In the code below, why does the compiler not complain for mClass2?
class CMyClass{
private:
CMyClass(){}
};
void TestMethod(){
CMyClass mClass1; //Fails.
CMyClass mClass2(); //Works.
}
|
In the code below, why does the compiler not complain for mClass2?
|
|||||||
|
|
Because you've just declared a function (To convince yourself, compile this module to assembler and observe that commenting out the line |
|||||||
|
|
Because it is declaring a function and not calling the constructor as you think. This is called as the Most Vexing Parse in c++.
declares a function |
||||
|
People ought to move to the uniform syntax initialization in C++0x/C++11 using the {} brackets instead which removes this issue. Class C{}; |
|||
|
|