码迷,mamicode.com
首页 > 编程语言 > 详细

C/C++:string和stringstream的小例子

时间:2014-11-09 18:08:44      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:c++



C++字符串常用操作

1、string的可以用相加来连接两个字符串。



#include<iostream>
#include<string>

using namespace std;

int main()
{
    string str;
    str += "hello ";
    str += "world !";
    cout << str << endl;
    return 0;
}

2、stringstream的运用:



#include<iostream>
#include<string>
#include<sstream>

using namespace std;

int main()
{
    stringstream ss;
    ss << "hello"; //stringstream重载了“<<”运算符,可直接这么利用
    ss << " ";
    ss << "world !  ";
    ss << 2014;
    cout << ss.str() << endl;
    return 0;
}






C/C++:string和stringstream的小例子

标签:c++

原文地址:http://blog.csdn.net/ricardo_he/article/details/40950849

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!