学习C++:使用stringstream对字符串进行转换
【摘要】 假如你有一个字符串,包含字符串值为20。如果你想将其转换为整型值,那么就可以使用stringstream类执行相应的转换操作。使用stringstream类,同样也可将整型转换为字符串。要使用std::stringstream类,需要包含头文件:
#include <sstream>
1
下面将演示如何使用stringstream类在整型和字符串之间进行...
假如你有一个字符串,包含字符串值为20。如果你想将其转换为整型值,那么就可以使用stringstream类执行相应的转换操作。使用stringstream类,同样也可将整型转换为字符串。要使用std::stringstream类,需要包含头文件:
#include <sstream>
- 1
下面将演示如何使用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;
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
文章来源: ai-wx.blog.csdn.net,作者:AI 菌,版权归原作者所有,如需转载,请联系作者。
原文链接:ai-wx.blog.csdn.net/article/details/104314459
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)