string字符串的拼接(7)
功能描述:
实现在字符串末尾拼接字符串
函数原型:
string& operator+=(const char* str); //重载+=操作符
string& operator+=(const char c); //重载+=操作符
string& operator+=(const string& str); //重载+=操作符
string& append(const char *s); //把字符串s连接到当前字符串结尾
string& append(const char *s,ini n); //把字符串s的前n个字符连接到当前字符串结尾
string& append(const string &s); //同operator+=(const string& str)
string& append(const string &s,int pos,int n); //字符串s中从pos开始的n个字符连接到字符串结尾
1 #include <iostream> 2 #include <string> 3 using namespace std; 4 5 void test_01() 6 { 7 string str1 = "I"; 8 str1 += " love you!"; 9 cout << "str1 = " << str1 << endl; 10 } 11 12 int main(void) 13 { 14 test_01(); 15 16 system("pause"); 17 return 0; 18 19 }