stringstream

本文详细介绍了C++中stringstream的应用,包括基本操作、类型转换、字符分割及重用技巧。讲解了如何利用stringstream实现字符串与整数之间的转换,如何通过clear和str方法有效管理缓存和内存,避免错误发生。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1、stringstream的基本操作

#include<bits/stdc++.h>
using namespace std;
int main() {
	string s = "123";
	stringstream ss(s);//s作为初值
	string t = ss.str();
	//ss.str()返回一个临时的string,函数执行完以后将被析构
	//不能用此临时string进行别的操作,可以先将这个值赋值给别的string再进行操作
	//此值可以直接赋值或者直接输出
	cout << t << endl;
}

2、stringstream经常用来类型转换

#include<bits/stdc++.h>
using namespace std;
int main() {
	//string转int
	stringstream ss;
	string s="123";
	int x;
	ss << s;
	ss >> x;
	cout << x << endl;
}
#include<bits/stdc++.h>
using namespace std;
int main() {
	//int到string
	stringstream ss;
	string s;
	int x=123;
	ss << x;
	ss >> s;
	cout << s << endl;
}

3、stringstream用来分割字符,可以分割空格,回车,tab隔开的

#include<bits/stdc++.h>
using namespace std;
int main() {
	//int到string
	stringstream ss;
	string s;
	getline(cin, s);
	ss << s;
	string t;
	while (ss >> t) {
		cout << t << endl;
	}
}

4、string不能重用,重用时需要用clear清空缓存,不清空将会出错

#include<bits/stdc++.h>
using namespace std;
int main() {
	stringstream ss;
	string s="123";
	int x;
	ss << s;
	ss >> x;
	cout << x << endl << endl;

	ss.clear();

	bool b = true;
	ss << b;
	ss >> x;
	cout << x;
}

5、ss.clear()和ss.str("")的区别

ss.clear()可以清空缓存,重用的时候使用,不能清空内存,会导致内存越来越大

ss.str("")用来清空内存

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值