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) 等.
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) 等.