我观察到 g++4.6.3 中的特殊行为。通过调用类构造函数创建临时变量时File(arg)
,编译器选择忽略表达式的存在arg
并将表达式解析为File arg;
- 为什么忽略成员名称?
- 标准是怎么说的?
- 如何避免?(不使用新
{}
语法) - 是否有相关的编译器警告?(我可以使用任意字符串 arg 它仍然可以安静地工作)
代码:
#include <iostream>
class File {
public:
explicit File(int val) : m_val(val) { std::cout<<"As desired"<< std::endl; }
File() : m_val(10) { std::cout<< "???"<< std::endl;}
private:
int m_val;
};
class Test {
public:
void RunTest1() { File(m_test_val); }
void RunTest2() { File(this->m_test_val); }
void RunTest3() { File(fhddfkjdh); std::cout<< "Oops undetected typo"<< std::endl; }
private:
int m_test_val;
};
int main()
{
Test t;
t.RunTest1();
t.RunTest2();
t.RunTest3();
return 0;
}
输出:
$ ???
$ As desired
$ Oops undetected typo