Tagged Questions

The term "most vexing parse" (a term coined by Scott Meyers in "Effective STL") refers to a particular syntactic ambiguity in C++ programs that leads to a counterintuitive interpretation of certain declarations. It is often accompanied by poor diagnostics, confusing many programmers who encounter it.

learn more… | top users | synonyms

26
votes
4answers
1k views

Most vexing parse: why doesn't A a(()); work?

Among the many things Stack Overflow has taught me is what is known as the "most vexing parse", which is classically demonstrated with a line such as A a(B()); //declares a function While this, for ...
26
votes
7answers
1k views

Why is it an error to use an empty set of brackets to call a constructor with no arguments?

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(); // ...
14
votes
4answers
305 views

C++ - What is this doing if the constructor is private?

In the code below, why does the compiler not complain for mClass2? class CMyClass{ private: CMyClass(){} }; void TestMethod(){ CMyClass mClass1; //Fails. CMyClass mClass2(); //Works. } ...
13
votes
8answers
2k views

Is no parentheses on a C++ constructor with no arguments a language standard?

I was compiling a C++ program in Cygwin using g++ and I had a class whose constructor had no arguments. I had the lines: MyClass myObj(); myObj.function1(); And when trying to compile it, I got the ...
10
votes
6answers
257 views

C++ spooky constructor [closed]

Possible Duplicate: Why is it an error to use an empty set of brackets to call a constructor with no arguments? Lets have this code class Foo { Foo(int) { } }; Then we have there ...
8
votes
2answers
337 views

constructor invocation mechanism

struct my { my(){ std::cout<<"Default";} my(const my& m){ std::cout<<"Copy";} ~my(){ std::cout<<"Destructor";} }; int main() { my m(); //1 my n(my()); //2 } ...
8
votes
5answers
383 views

Why is there no call to the constructor?

This code doesn't behave how I expect it to. #include<iostream> using namespace std; class Class { Class() { cout<<"default constructor called"; } ~Class() { ...
8
votes
1answer
356 views

const reference binding to an rvalue

Working on this question, I found an inconsistent behavior. Why reference binding behave different in a constructor from a common function? struct A { }; struct B : public A { B(){} private: ...
7
votes
4answers
182 views

A confusing detail about the Most Vexing Parse

My question is how the following line can be parsed as a function declaration: vector<int> v(istream_iterator<int>(cin), istream_iterator<int>()); I understand most of the details ...
7
votes
2answers
169 views

Why is my constructor with non const reference as argument allowed to be called with temporary objects?

I have a sample code below. #include<iostream> template<typename T> class XYZ { private: T & ref; public: XYZ(T & arg):ref(arg) { } }; class temp { int x; ...
5
votes
1answer
86 views

Vector constructor with two parameters is parsed as a function declaration

Consider this example: #include <iostream> #include <string> #include <vector> #include <iterator> int main() { std::string sen = "abc def ghi jkl"; ...
5
votes
2answers
125 views

(Simple Constructor Concept) Why doesn't Foo(); do anything?

This is a simple C++ constructor concept I'm having trouble with. Given this code snippet: #include <iostream> using namespace std; class Foo { public: Foo () { cout << ...
5
votes
1answer
177 views

Most vexing parse(C++)

I got the code from here. class Timer { public: Timer(); }; class TimeKeeper { public: TimeKeeper(const Timer& t); int get_time() { return 1; } }; int main() { TimeKeeper ...
4
votes
4answers
209 views

passing Temporary variables to reference arg in Cons works. but not for functions in general. Why?

Consider the following code. Here, A a(B()) compiles even though the constructor is A(B& b); But print(B()) does not work. But print is also declared as print(B& b); Why this inconsistency? ...
3
votes
2answers
98 views

Understanding the C++ compiler [closed]

Possible Duplicate: Most vexing parse: why doesn't A a(()); work? I am having this simple C++ issue that is making me wanna restart my CS degree all over again trying to learn something ...
3
votes
2answers
87 views

Creating an instance of a class with ()

I have a question : what constructor is used when you create an instance of a class with ClassName instance() in C++ ? Example: #include <iostream> using namespace std; class Test { private: ...
3
votes
3answers
113 views

Why can this code elide a copy? [closed]

Possible Duplicates: constructor invocation mechanism Why is it an error to use an empty set of brackets to call a constructor with no arguments? Why can this code elide all copies of A? ...
3
votes
3answers
120 views

How do I check if a value is contained in a vector? C++

I have a vector that I am trying to perform a contains function on. I am receiving some sort of casting error and I can't piece together a solution. I am also wanting to know whether or not what I am ...
3
votes
3answers
98 views

Why this is not a vexing parse?

Basically this is a follow up of this question about most vexing parse. I can understand that this is due to the ambiguity between the function declaration and variable definition. But in Comeau ...
3
votes
2answers
134 views

Strange compiler error when trying to create a temporary object

After I posting this question I tried to reproduce the problem of accidental rvalue creation when creating a scoped RAII object. Now it appears that I can't reproduce it without compiler errors! In ...
3
votes
6answers
511 views

Difference between creating object with () or without

i just run into the problem error: request for member ‘show’ in ‘myWindow’, which is of non-class type ‘MainGUIWindow()’ when trying to compile a simple qt-application: #include ...
2
votes
3answers
75 views

C++ Error when adding objects to vector

I'm new with vectors. I'm trying to add objects to a vector. But the program can't compile because I have a problem in the code. But I don't know what is it. The error is: error C2664: 'void ...
2
votes
1answer
87 views

Constructor not returning usable object

I have a problem with the constructor, which is not working as I'd expect. If I try to initialize my class like that, it will work and I get a usable object: vector<float> v; MyClass<2> ...
2
votes
2answers
171 views

C++ compile time checker using templates

I am having following code which is taken from modern C++ design. While i am using it i am getting compiation error i think invalid sizeof opearand. Can any one point out what is the problem. Thanks! ...
2
votes
2answers
115 views

explicitly using constructor call in main as a function call parameter

I am trying to understand how explicit constructor call in main works using the following code. #include<iostream> using namespace std; class Dependency1 { bool init; public: ...
1
vote
3answers
174 views

Cannot access vector when constructing with istream_iterator range

I tried to compile this code snippet but I got compiler error :( ! Compile with Visual Studio 2010 #include <vector> #include <string> #include <sstream> #include <iterator> ...
0
votes
2answers
53 views

Setting constructor default values in c++ [closed]

Possible Duplicate: Why is it an error to use an empty set of brackets to call a constructor with no arguments? Constructing Objects and Calling Member functions Recently I've learnt a ...
0
votes
3answers
270 views

Finding typeid of a template parameter

The print statement in the constructor's definition doesn't get printed, isn't the constructor calling correct in main? I know I am missing some point here, please point out. #include ...
0
votes
5answers
168 views

Move ctor is not called

Am I doing something wrong (again)? #include <iostream> using std::cout; struct Map { Map() { cout << "Map()\n"; } Map(const Map& pattern) { ...
0
votes
5answers
454 views

Sort function does not work with function object created on stack?

#include<iostream> #include<vector> #include<algorithm> class Integer { public: int m; Integer(int a):m(a){}; }; class CompareParts { public: bool ...