我是靠谱客的博主 专一保温杯,最近开发中收集的这篇文章主要介绍c++中string类的常用方法有哪些,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

c++中string类的常用方法如下:

1、获取字符串长度

 
#include<cstdio>
#include<iostream>
#include<string>
using namespace std;
int main()
{
    string str1 = "hello";
 
    int length = str1.length();
    printf("调用str.length()函数获取字符串长度:%dnn",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语言教程

以上就是c++中string类的常用方法有哪些的详细内容,更多请关注靠谱客其它相关文章!

最后

以上就是专一保温杯为你收集整理的c++中string类的常用方法有哪些的全部内容,希望文章能够帮你解决c++中string类的常用方法有哪些所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(88)

评论列表共有 0 条评论

立即
投稿
返回
顶部