vote up 13 vote down star
1

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?

flag

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

7 Answers

vote up 25 vote down check

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

link|flag
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
vote up 1 vote down

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|flag
vote up 11 vote down

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|flag
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++. – mmutz Aug 8 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 at 17:56
vote up 2 vote down

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|flag
vote up 2 vote down

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|flag
vote up 11 vote down

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

int MyFunction(); // clearly a function
MyObject object(); // also a function declaration
link|flag
vote up 3 vote down

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

link|flag

Your Answer

Get an OpenID
or

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