温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

C++中怎么使用stringstream对字符串进行转换

发布时间:2021-08-05 17:49:35 来源:亿速云 阅读:231 作者:Leah 栏目:大数据

这篇文章给大家介绍C++中怎么使用stringstream对字符串进行转换,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。

假如你有一个字符串,包含字符串值为20。如果你想将其转换为整型值,那么就可以使用stringstream类执行相应的转换操作。使用stringstream类,同样也可将整型转换为字符串。要使用std::stringstream类,需要包含头文件:

#include <sstream>

下面将演示如何使用stringstream类在整型和字符串之间进行转换:

#include <fstream>#include <sstream>#include <iostream>using namespace std;int main(){
   
   
   
	cout<<"输入一个整数:";int Input=0;
	cin>>Input;
   //1.整型转换成字符串
 	stringstream Convert;
	Convert<<Input; //使用运算符<<将Input插入到一个stringstream对象中
	string strInput;
	Convert>>strInput; //使用提取运算符>>将这个整数转换成string
	cout<<"整型输入Input= "<<Input<<endl;
	cout<<"使用stringstream转换后得到的字符串,strInput= "<<strInput<<endl;
	
   //2.字符串转换为整型
	stringstream Convert1;
	Convert1<<strInput;int Integer=0;
	Convert1>>Integer;
	cout<<"使用stringstream将字符串转换成整型,Integer= "<<Integer<<endl;return 0;}

关于C++中怎么使用stringstream对字符串进行转换就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI