首页 > 代码库 > c++字符串初始化

c++字符串初始化

#include<string>

 string s1 = "abcdefg";  

 string s2("abcdefg"); 

c++字符串初始化