含有string成员的结构体变量,为什么不能初始化

2024-12-31 21:30:06
推荐回答(1个)
回答1:

结构体需要这样定义 struct theSct { std::string str; std::string str2; theSct() :str("") ,str2("") { } }