我正在尝试使用 C++11 Lambda 来初始化const
类的成员变量。
一个非常简化的例子:
class Foo
{
public:
const int n_;
Foo();
};
Foo::Foo()
: n_( []() -> int { return 42; } )
{
}
int main()
{
Foo f;
}
在 MSVC10 中,这会产生:
error C2440: 'initializing' : cannot convert from '`anonymous-namespace'::<lambda0>' to 'const int'
在IDEONE 中,这会产生:
prog.cpp: In constructor 'Foo::Foo()':
prog.cpp:9:34: error: invalid conversion from 'int (*)()' to 'int'
我开始意识到我不能在类的初始化列表中使用 lambda。
我可以吗?如果是这样,正确的语法是什么?