我正在阅读 C++ 编程语言 4e。在默认参数部分,我不理解下面的代码。我尝试编译但出现错误。无论如何,Bjarne 试图解释什么?
默认参数在函数声明时进行类型检查,并在调用时进行评估。例如:
class X
{
public:
static int def_arg;
void f(int = def_arg);
// ...
};
int X::def_arg = 7;
void g(X& a)
{
a.f(); // maybe f(7)
a.def_arg = 9;
a.f(); // f(9)
}
错误是:
unresolved external symbol "public: void __thiscall X::f(int)" (?f@X@@QAEXH@Z) referenced in function "void __cdecl g(class X &)" (?g@@YAXAAVX@@@Z)
微软 C++ 2013