a class that does not have a default constructor

A

asdf

what does it mean? Could you please show me an example ?

For a class without a default constructor,how to initialize ?
 
B

benben

asdf said:
what does it mean? Could you please show me an example ?

For a class without a default constructor,how to initialize ?


class C
{
public: C(int i){}
};

C c1; // error
C c2(1234); // Ok

Ben
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,766
Messages
2,569,569
Members
45,042
Latest member
icassiem

Latest Threads

Top