#include"iostream"
#include"string"
using namespace std ;
int main()
{
// 默认构造
string s1;
// 字符指针构造
const char *str="Hello world";
string s2(str);
// 参数构造
string s3(15,'c');
cout<<s1<<endl;
cout<<s2<<endl;
cout<<s3<<endl;
return 0;
}
C++ 字符串构造器string
最新推荐文章于 2024-03-26 19:02:49 发布