Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In the code below, why does the compiler not complain for mClass2?

class CMyClass{
private:
    CMyClass(){}
};

void TestMethod(){
    CMyClass mClass1;   //Fails.
    CMyClass mClass2(); //Works.
}
share|improve this question
1  
Also known as: Most Vexing Parse (see en.wikipedia.org/wiki/Most_vexing_parse) – Matthieu M. Jul 21 '11 at 8:54

4 Answers

up vote 15 down vote accepted

Because you've just declared a function mClass2 of zero arguments that returns a CMyClass. That's a valid option since there could be, say, a static CMyClass instance which that function has access to. Note that CMyClass still has a public copy constructor.

(To convince yourself, compile this module to assembler and observe that commenting out the line CMyClass mClass2(); produces the same output.)

share|improve this answer
1  
Also, a valid move constructor. – Arafangion Jul 21 '11 at 8:18
Thanks very much. :) – R4D4 Jul 21 '11 at 8:22

Because it is declaring a function and not calling the constructor as you think.

This is called as the Most Vexing Parse in c++.

CMyClass mClass2(); 

declares a function mClass2() which takes no parameter and returns CMyClass

share|improve this answer
Most vexing parse - can't say I've ever heard of that before, I'll have a look at that, thank you. :) – R4D4 Jul 21 '11 at 8:22
@R4D4: Added link for you to look up to :) – Alok Save Jul 21 '11 at 8:34

The second one is a function declaration.

share|improve this answer

People ought to move to the uniform syntax initialization in C++0x/C++11 using the {} brackets instead which removes this issue.

Class C{};

http://www2.research.att.com/~bs/C++0xFAQ.html#uniform-init

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.