91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

c++ string類的常用方法

發布時間:2020-05-13 17:01:32 來源:億速云 閱讀:174 作者:Leah 欄目:編程語言

今天小編就為大家帶來一篇介紹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類的常用方法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果喜歡這篇文章,不如把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

巢湖市| 琼结县| 得荣县| 邵武市| 旬阳县| 循化| 乐山市| 尚义县| 和政县| 库车县| 资阳市| 梅州市| 青阳县| 吴桥县| 丘北县| 泗阳县| 沧源| 沾化县| 靖边县| 宁安市| 长顺县| 浑源县| 靖安县| 邻水| 雷山县| 邢台县| 博爱县| 从江县| 安龙县| 自贡市| 华蓥市| 商河县| 章丘市| 昔阳县| 桃园县| 麻栗坡县| 克什克腾旗| 越西县| 乐业县| 宿松县| 洛川县|