up vote 26 down vote favorite
8
share [g+] share [fb]

Is there any good reason that an empty set of brackets isn't valid for calling the default ctor in c++?

MyObject  object;  // ok - default ctor
MyObject  object(blah); // ok

MyObject  object();  // error

I seem to type "()" automatically everytime. I just wondered if there was a good reason this isn't allowed?

link|improve this question

Someone should come up with a better title for this, but I can't think of what that would be. At least spell out "constructor" to help the search engine(s). – Adam Mitz Oct 8 '08 at 5:18
1  
And this is just another good example where C++ is context sensitive. The example code in the question would also fail if blah would be a class. – Albert Aug 27 '10 at 21:03
feedback

7 Answers

up vote 24 down vote accepted

Most vexing parse

This is known as "C++'s most vexing parse". Basically, anything that can be interpreted by compiler as function declaration will be interpreted as function declaration, even if resulting AST doesn't compile.

Another instance of the same problem:

std::ifstream ifs("file.txt");
std::vector v(std::istream_iterator(ifs), std::istream_iterator());

v is interpreted as a declaration of function with 2 parameters and fails to compile.

The workaround is to add another pair of parentheses:

std::vector v((std::istream_iterator(ifs)), std::istream_iterator());
link|improve this answer
I had read Effective STL but I didn't remember seeing that. i will have to read it again, thanks – Martin Beckett Oct 8 '08 at 16:19
1  
Nitpick: you can declare functions inside functions. It's called local functions in C, and at least extern "C" foo();-style is also allowed in C++. – Marc Mutz - mmutz Aug 8 '09 at 10:20
Thanks, mmutz, don't know what i was thinking when i wrote it, probably confused declaration with definition. Edited the answer accordingly. – Constantin Aug 12 '09 at 17:56
How can that be interpreted as a function? – Casebash Oct 29 '10 at 1:00
1  
@Casebash, std::vector is return type; v is function name; ( opens formal argument list; std::istream_iterator is type of first argument; ifs is name of first argument, () around ifs are effectively ignored; second std::istream_iterator is type of second argument, which is unnamed, () around it are also ignored; ');' closes argument list and function declaration. – Constantin Oct 30 '10 at 7:31
feedback

The same syntax is used for function declaration - e.g. the function object, taking no parameters and returning MyObject

link|improve this answer
1  
Thanks - it wouldn't occur to me to declare a function in th emiddle of some other code. But I suppose it is legal. – Martin Beckett Oct 7 '08 at 20:36
feedback

Because it is the treated as the declaration for a function:

int MyFunction(); // clearly a function
MyObject object(); // also a function declaration
link|improve this answer
feedback

Because the compiler thinks it is a declaration of a function that takes no arguments and returns a MyObject instance.

link|improve this answer
feedback

I guess, the compiler would not know if this statement:

MyObject object();

is a constructor call or a function prototype declaring a function named object with return type MyObject and no parameters.

link|improve this answer
feedback

As mentioned many times, it's a declaration. It's that way for backward compatibility. One of the many areas of C++ that are goofy/inconsistent/painful/bogus because of its legacy.

link|improve this answer
feedback

You could also use the more verbose way of construction:

MyObject object1 = MyObject();
MyObject object2 = MyObject(object1);

In C++0x this also allows for auto:

auto object1 = MyObject();
auto object2 = MyObject(object1);
link|improve this answer
1  
This requires a copy constructor and is inefficient – Casebash Oct 29 '10 at 1:01
@Casebash: The compiler is probably smart enough to use some RVO-like optimization prevent it from being inefficient. – dalle Oct 29 '10 at 11:23
feedback

Your Answer

 
or
required, but never shown

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