您好,登錄后才能下訂單哦!
今天小編就為大家帶來一篇介紹c++中string類的常用方法的文章。小編覺得挺實用的,為此分享給大家做個參考。一起跟隨小編過來看看吧。
1、獲取字符串長度
#include<cstdio> #include<iostream> #include<string> using namespace std; int main() { string str1 = "hello"; int length = str1.length(); printf("調用str.length()函數獲取字符串長度:%d\n\n",length ); return 0; }
2、字符串連接
#include<cstdio> #include<iostream> #include<string> using namespace std; int main() { string str1 = "hello"; string str2="my girl!"; string str3="hello "; string str4=str1+str2; string str5=str3+str2; cout<<"字符串str1+str2連接結果:"<<str4<<endl; cout<<endl; cout<<"字符串str3+str2連接結果:"<<str5<<endl; return 0; }
3、字符串比較
#include<cstdio> #include<iostream> #include<string> using namespace std; int main() { string str1 = "hello"; string str2="my girl!"; string str3="hello "; if (str1 < str3) cout << "字符串比較結果:" << "str1<str2" << endl; cout << endl; return 0; }
4、字符串轉字符數組
#include<cstdio> #include<iostream> #include<string> #include<cstring> using namespace std; int main() { string str1 = "hello"; string str2="my girl!"; string str3="hello "; char *d = new char[20]; //因為下一句那里不是直接賦值,所以指針類型可以不用const char * strcpy(d, str3.c_str()); //c_str 取得C風格的const char* 字符串 cout << "str3:" << c << endl; cout << "d:" << d << endl; str3 = "hahaha"; cout << "str3:" << c << endl; cout << "d:" << d << endl; return 0; }
關于c++中string類的常用方法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果喜歡這篇文章,不如把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。