Suppose I have derived class of:
Code:
class myDerivedClass : public myBaseClass
{
public:
myDerivedClass(int a, int b) : myBaseClass(x, y) {} // line 4
... // other members from here
...
}
Can anyone tell me whether the line 4 syntax is correct, and if it does, what does it means? Thanks.
yengzhai