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 ...
3
votes
2answers
81 views
structure expected on left side of . or .* but it is a structure
I'm getting the compile error structure required on left side of . or .* on chest.contents[0], but chest is a structure:
class Item {
public:
int id;
int dmg;
};
class Chest {
public:
...
8
votes
1answer
204 views
Is this a VS2008 bug? Functional style variable initialisation
In the code below, the line
const char * const * eNames (names+cntNames);
results in a C2061 error in Visual Studio 2008:
syntax error : identifier 'identifier' -
The compiler found an ...
5
votes
1answer
120 views
Why is the address of an array element sometimes mistaken for a declaration?
I have some user defined iterators, and every now and then I get a strange error that is easy to work around, but I don't understand why I'm getting it:
uint8_t bytes[pitch*height];
...
1
vote
2answers
76 views
what is the meaning of this syntax [duplicate]
The following code compiles. But if I write the code to call the method test using jar it is giving me a compilation error. What is really happening here.
#include <iostream>
using ...
-2
votes
2answers
96 views
What is the difference between object and object() in C++ [duplicate]
class A {
public:
A() { cout << "Constructor\n"; } // (1) default constructor
};
A obj; // (2) instantiating obj
A obj(); // ...
1
vote
3answers
94 views
C++ constructor issues
I wonder if anybody can help with what seems to me like strange behaviour in c++ (gcc latest version). Below is some code that compiles successfully where I would expect a compile time error due to ...
2
votes
1answer
83 views
Why does `Bar bar1(Bar());` not create any object instances? [duplicate]
Possible Duplicate:
Most vexing parse: why doesn’t A a(()); work?
Most vexing parse(C++)
I am creating some example codes to teach myself C++11. I created the following sample code to ...
3
votes
3answers
132 views
Avoid the most vexing parse
How do I get the compiler to create temporaries, use the default constructor on them while not defining a function?
struct B {};
template<class T> struct C {};
template<class T,class T1>
...
1
vote
1answer
66 views
Bizarre unresolved external compiling DLL
I am trying to follow the instructions on this site:
http://support.microsoft.com/kb/q168958
Here is the code:
#include <windows.h>
#include <malloc.h>
namespace Test {
...
1
vote
2answers
84 views
Parsing ambiguity in a call to a temporary function object
I suspect that in the code below, a call to a temporary function object with both a constructor argument and a function call operator argument is somehow ambiguous due to a most-vexing-parse issue.
...
3
votes
2answers
547 views
What's the differences between Test t; and Test t();? if Test is a class [duplicate]
Possible Duplicate:
Why is there no call to the constructor?
I am using Visual studio 2012, Suppose Test is a class
class Test
{
};
When I create a new instance of Test, what's the ...
0
votes
3answers
105 views
invalid initialization of non-const reference
Alright, I'm trying to figure out this error and have, so far, had absolutely no luck. I'm doing this for homework, which is why I'm not using included classes.
Here's the relevant code:
//Will ...
0
votes
1answer
104 views
Overloaded operator << outputs bool value. why?
xml_attribute.h
#pragma once
#ifndef XML_ATTRIBUTET_H
#define XML_ATTRIBUTET_H
#include <string>
#include <iostream>
struct XML_AttributeT{
std::string tag;
std::string value;
...
2
votes
1answer
215 views
Is there any difference between `List x;` and `List x()`
The title comes from the famous site C++ FAQ by Marshall Cline.
The author claims that there is a difference between the following two code examples.
Suppose that List is the name of some class. ...
1
vote
5answers
227 views
C++ constructor not being called
I'm new to C++ and this is my first time with its classes and I was wondering, how do I call a constructor? I've read some documentation on classes in C++ and that's how I came up with what I have. ...
3
votes
3answers
94 views
Calling constructor with a temporary object
I don't understand the following problem.
class InnerBox
{
public:
InnerBox() : mContents(123) { };
private:
int mContents;
};
class Box
{
public:
Box(const InnerBox& innerBox) : ...
2
votes
3answers
112 views
Meaning of class(*)() in gcc
I'm having trouble understanding this compiler error. I wrote class(*)() in the post title because the class I am instantiating is called "opaque", but that name is not informative or relevant. It ...
70
votes
3answers
2k views
Why does this call the default constructor?
struct X
{
X() { std::cout << "X()\n"; }
X(int) { std::cout << "X(int)\n"; }
};
const int answer = 42;
int main()
{
X(answer);
}
I would have expected this to print ...
0
votes
4answers
63 views
Invalid object after elision of copy operation? [duplicate]
Possible Duplicate:
Why is it an error to use an empty set of brackets to call a constructor with no arguments?
Most vexing parse: why doesn't A a(()); work?
This one gets me mad. ...
1
vote
2answers
189 views
Understanding 'most vexing parse' - why allow ambiguous syntax?
While trying to understand the "Most vexing parse" problem in C/C++, this question immediately springs to mind - why have a syntax that causes this problem to begin with?
For example,
class Timer
{
...
3
votes
2answers
189 views
Why do I need double parentheses in constructor calls like: foo x( (bar()) ); [duplicate]
Possible Duplicate:
Why is it an error to use an empty set of brackets to call a constructor with no arguments?
I have seen the C++ FQA entries about nested constructor calls and bracing ...
4
votes
4answers
132 views
C++: bizarre occurrence of “Request for member X of Y which is of non-class type Z”
The following program, compiled with g++ 4.6, yields the error
request for member ‘y’ in ‘a2’, which is of non-class type ‘A<B>(B)’
at its last line:
#include <iostream>
template ...
0
votes
1answer
47 views
Temporary concreate derived object passed where a reference to abstract base needed doesn't work?
I guess there is something about temporary objects that I don't understand.
Given the relationships:
class C {};
class F {
public:
C getC() { return C(); };
};
class N {
public:
N( C & ...
4
votes
2answers
132 views
Why copy constructor not getting called in this case
Say, I have a class A
Now when I am doing
A a(A());
what exactly happens?
6
votes
4answers
210 views
C++ declares a function instead of calling a complex constructor
First of, I know there are similar questions already on stackoverflow (this, this and this one) and that is why I understand the why of my problem. Unfortunately, that doesn't help me to solve it.
...
2
votes
3answers
54 views
return instanse by value from a method stack compilation
can you explain why this won't compile:
(this is the error:
../Man.cpp:33:9: error: conversion from ‘Man (*)()’ to non-scalar type ‘Man’ requested)
Code:
Man goo(){
Man m();
return m;
}
...
10
votes
4answers
204 views
Why is the constructor not called when () is used to declare an object? [duplicate]
Possible Duplicate:
Why is it an error to use an empty set of brackets to call a constructor with no arguments?
$ cat cons.cpp
#include <iostream>
class Matrix {
private:
int ...
0
votes
2answers
81 views
Miscellaneous temporary object T() [closed]
Consider this code :
int main()
{
int i(6); //this will result in i==6,but consider next initializations
int j(int());
T * p2 = new T();
}
I find that the value of j is 1, but this ...
4
votes
2answers
145 views
Understanding the C++ compiler [duplicate]
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 ...
5
votes
1answer
416 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";
...
0
votes
2answers
196 views
Setting constructor default values in c++ [duplicate]
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 ...
10
votes
6answers
305 views
C++ spooky constructor [duplicate]
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
4answers
386 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 ...
14
votes
4answers
370 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.
}
...
3
votes
2answers
229 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
137 views
Why can this code elide a copy? [duplicate]
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?
...
7
votes
2answers
216 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;
...
3
votes
3answers
387 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
151 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 ...
11
votes
1answer
524 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 ...
0
votes
3answers
1k 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 ...
2
votes
1answer
115 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> ...
3
votes
2answers
164 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 ...
2
votes
2answers
255 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!
...
5
votes
6answers
2k 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
2answers
363 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:
...
2
votes
3answers
340 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>
...
8
votes
2answers
582 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
}
...
0
votes
5answers
236 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)
{
...
11
votes
5answers
503 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()
{
...