码迷,mamicode.com
首页 > 编程语言 > 详细

C++ - string类型转换int类型

时间:2014-06-11 00:27:22      阅读:294      评论:0      收藏:0      [点我收藏+]

标签:mystra   c++   string   转换   int   

string类型转换int类型


本文地址: http://blog.csdn.net/caroline_wendy


C语言转换形式:

...
std::string str;
int i = atoi(str.c_str());
...


C++转换形式(C++11):

...
std::string str;
int i = std::stoi(str);
...

同样, 可以使用 stol(long), stof(float), stod(double) 等.


参考: http://en.cppreference.com/w/cpp/string/basic_string/stol


bubuko.com,布布扣

C++ - string类型转换int类型,布布扣,bubuko.com

C++ - string类型转换int类型

标签:mystra   c++   string   转换   int   

原文地址:http://blog.csdn.net/caroline_wendy/article/details/29390573

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!