今天小編就為大家?guī)硪黄榻Bc++中string類的常用方法的文章。小編覺得挺實用的,為此分享給大家做個參考。一起跟隨小編過來看看吧。
在隆回等地區(qū),都構建了全面的區(qū)域性戰(zhàn)略布局,加強發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務理念,為客戶提供網(wǎng)站制作、網(wǎng)站設計 網(wǎng)站設計制作按需網(wǎng)站建設,公司網(wǎng)站建設,企業(yè)網(wǎng)站建設,品牌網(wǎng)站建設,成都全網(wǎng)營銷,成都外貿(mào)網(wǎng)站制作,隆回網(wǎng)站建設費用合理。1、獲取字符串長度
#include<cstdio> #include<iostream> #include<string> using namespace std; int main() { string str1 = "hello"; int length = str1.length(); printf("調(diào)用str.length()函數(shù)獲取字符串長度:%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、字符串轉字符數(shù)組
#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類的常用方法就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果喜歡這篇文章,不如把它分享出去讓更多的人看到。
另外有需要云服務器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。
當前名稱:c++string類的常用方法-創(chuàng)新互聯(lián)
文章路徑:http://jinyejixie.com/article14/dhopde.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供微信公眾號、做網(wǎng)站、企業(yè)建站、網(wǎng)站收錄、云服務器、動態(tài)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容