开发者社区> 问答> 正文

c++里如何重定向一个字符串 使string变成int型 请大神指导啊

c++里如何重定向一个字符串 使string变成int型 请大神指导啊

展开
收起
a123456678 2016-03-09 11:49:47 2336 0
1 条回答
写回答
取消 提交回答
  • int转string
    int n = 0;
    std::stringstream ss;
    std::string str;
    ss< ss>>str;
    string转int
    std::string str = "123";
    int n = atoi(str.c_str());
    复制代码
    #include "stdafx.h"
    
    #include 
    #include
    
    using namespace std;
    void main()
    {
    // int 转 string
    stringstream ss;
    int n = 123;
    string str;
    ss< ss>>str;
    // string 转 int
    str = "456";
    n = atoi(str.c_str());
    }
    
    2019-07-17 18:55:45
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
使用C++11开发PHP7扩展 立即下载
GPON Class C++ SFP O;T Transce 立即下载
GPON Class C++ SFP OLT Transce 立即下载

相关实验场景

更多