0

我在http://en.cppreference.com/w/cpp/utility/functional/bind中看到了一个示例代码

struct Foo {
    void print_sum(int n1, int n2)
    {
        std::cout << n1+n2 << '\n';
    }
    int data = 10; // ???
};

为类中有效的成员变量赋予初始值吗?如果是这样,哪个编译器支持它?

4

1 回答 1

0

看看这个 MSVC,但最新的标准支持它。

于 2013-10-04T13:57:03.257 回答