Hello,
class A
{
public:
A();
A(int a);
}
A::A() {
//how to instance the A(1) here
}
A::A(int a) {
cout << a;
}
As in the above code, how can I add a statement that can instance the A(int)
in the A() constructor ???
Eric
--
==========================
If you know what you are doing,
it is not called RESEARCH!
==========================