直接初始化POD变量不起作用,但复制初始化在将变量推送到矢量时会起作用

时间:2012-08-16 19:37:41

标签: c++ initialization copy-initialization

为什么以下代码无法编译,而编译成功后的两个示例?我在Windows 7上使用VS 2008。


直接初始化POD(失败):

int pod();
std::vector<int> pods;
//pods.push_back(pod); // This will generate a compiler error
// Compile error: 1>c:\test.hpp(43) : error C2664: 'std::vector<_Ty>::push_back' : cannot convert parameter 1 from 'int (__cdecl *)(void)' to 'const int &'

复制POD的初始化(成功:

int pod = int();
std::vector<int> pods;
pods.push_back(pod); // No error!

1 个答案:

答案 0 :(得分:6)

查找“most vexing parse”(这里也一遍又一遍地讨论过)。

int pod(); // this does not declare (nor define) an integer

顺便问一下,为什么要将1放在MyClass示例中?