码迷,mamicode.com
首页 > 其他好文 > 详细

stringstream函数

时间:2016-03-01 18:34:15      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:

stringstream函数

头文件  #include<sstream>

stringstream是字符串流,被用来切分数据或转化类型

样例一(摘)

输入n,代表接下来输入n行资料,每行资料有不固定个数的整数(最多20个,不大于200个字元)。输出每行的总数

输入:

3 1 2 3 20 17 23 54 77 60 111 222 333 444 555 666 777 888 999

输出:

6

251

4995

 

代码

#include<iostream>
#include<string>
#include<sstream>
using namespace std;
int main()
{
string s;
stringstream ss;
int n, i, sum, a;
cin >> n;
getline(cin, s);           //读取换行
for (i=0; i<n; i++){
    getline(cin, s);
    ss.clear();             //清空
    ss.str(s);            //用str()将指定字串s设为开始的内容
    sum=0;
    while (1)
    {
        ss >> a;
        if ( ss.fail() ) break;
        sum+=a;
    }
    cout << sum << endl;
}
//system("pause");
return 0;
}

 

 

样例二(摘)

基本数据类型转换例子 int转string

#include <string>
 #include <sstream>
 #include <iostream> 
using namespace std;
 int main()
 {
    stringstream ss;
     string result;
     int i = 1000;
     ss << i;             //将int输入流
    ss >> result;           //从stream中抽取前面插入的int值
    cout << result << endl;    // print the string "1000"
    //system("pause");
    return 0;
 } 

 

 

样例三(摘)

int转换为char *

 

#include <sstream>
 #include <iostream> 
using namespace std;
 int main()
 {
     stringstream ss;
     char result[8] ;
     ss << 8888;                   //向stream中插入8888
     ss>> result;                   //抽取stream中的值到result
     cout << result <<endl;          // 屏幕显示 "8888"
    //system("pause");
    return 0;
 } 

 

样例四(摘)

多次转换时必须调用成员函数clear()

#include <sstream>
 #include <iostream> 
using namespace std;
 int main()
 {
    stringstream ss;
     int first, second;
     ss<< "123456";                 //插入字符串
    ss >> first;                //转换成int
     cout << first <<endl;
     ss.clear();                 //在进行多次转换前,必须清除stream
     ss<< false;                 //插入bool值
    ss>> second;                //提取出int
    cout << second <<endl;
    //system("pause");
    return 0;
 } 

 

stringstream函数

标签:

原文地址:http://www.cnblogs.com/farewell-farewell/p/5231812.html

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