C++提高教程 STL -string赋值操作
Posted 行码阁119
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++提高教程 STL -string赋值操作相关的知识,希望对你有一定的参考价值。
# include<iostream>
using namespace std;
//string赋值操作
void test01()
{
string str1;
str1 = "hello world";
cout << "str1:" << str1 << endl;
string str2;
str2 = str1;
cout << "str2:" << str1 << endl;
string str3;
str3 = 'a';
cout << "str3:" << str3 << endl;
string str4;
str4.assign("Hello C++");
cout << "str4:" << str4 << endl;
string str5;
str5.assign("Hello C++",4);
cout << "str5:" << str5 << endl;
string str6;
str6.assign(10,'c' );
cout << "str6:" << str6<< endl;
}
int main()
{
test01();
system("pause");
return 0;
}
以上是关于C++提高教程 STL -string赋值操作的主要内容,如果未能解决你的问题,请参考以下文章