C++ - string类型转换int类型
Posted SpikeKing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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
以上是关于C++ - string类型转换int类型的主要内容,如果未能解决你的问题,请参考以下文章