stringstream的用法

#include <iostream>
#include <fstream>
#include <string>
#include <sstream>
using namespace std;

int main()
{
	ifstream infile1;
	infile1.open("d:\\test.txt");
	string sLine, sWord;
	while (getline(infile1, sLine))
	{
		istringstream iss(sLine);
		while (iss >> sWord)
		{
			//1.读取每一行的每个单词,并输出
			cout<<sWord.c_str()<<endl;
		}
	}
	infile1.close();

	//2.格式化输入输出
	int val1 = 512, val2 = 1024;
	int val3, val4;
	ostringstream oss;
	oss<<"val1: "<<val1<<",val2: "<<val2;//要有空格符

	string str;
	istringstream iss(oss.str());
	iss>>str>>val3>>str>>val4;
	cout<<"val3:"<<val3<<",val4:"<<val4<<endl;

	//3.类型转换(再进行多次转换的时候,必须调用stringstream的成员函数clear())
	string s1 = "1000";
	int n1, n2;
	stringstream ss;
	ss<<s1;
	ss>>n1;
	ss.clear();
	ss<<true;
	ss>>n2;
	cout<<n1<<", "<<n2<<endl;

	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值