标签: c++ string
以下是否安全:
string s; s += "dsgdf"; cout << s;
字符串是否已使用""自动初始化,或者我需要执行此操作?
""
答案 0 :(得分:4)
默认构造的字符串为空,是的。它不是未初始化或处于其他不安全状态。