字符串类型的类成员的初始化

时间:2016-08-09 11:03:10

标签: c++

我想用“空字符串”初始化Test_class的字符串成员。我不明白为什么这段代码错了

class Test_class{
private:
    std::string string_01 ("Empty string");
};

这很好用

class Test_class{
private:
    std::string string_01 = "Empty string";
};

0 个答案:

没有答案