C/C++教程

c++ stringstream 实现字符串与int之间的转换

本文主要是介绍c++ stringstream 实现字符串与int之间的转换,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
#include <iostream>
#include <sstream>
using namespace std;
int main()
{
    //string转int
    string str="10";
    int num;
    stringstream ss;
    ss<<str;
    ss>>num;
    cout<<num+1;
 
    ss.clear();//将读写状态重置
    ss.str("");//将内容置空
    
    //int转string
    int num2=100;
    string str2;
    ss<<num2;
    ss>>str2;
    str2[0]='d';
    cout<<str2;
}

 

这篇关于c++ stringstream 实现字符串与int之间的转换的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!