我有一個字符串xxxxxxxxxxxxxxxxxxx
將字符串轉換爲int在C++
我讀的字符串轉換成較小的字符串的結構,並使用SUBSTR解析它。 我需要將其中一個字符串類型轉換爲整數。
atoi
不適合我,。有任何想法嗎?它說:cannot convert std::string to const char*
感謝
#include<iostream>
#include<string>
using namespace std;
void main();
{
string s="453"
int y=atoi(S);
}
'atoi'是不是如果你需要驗證,它成功地轉換爲使用一個很不錯的功能,更好的東西來使用是'strtol': [Documentation](http://www.cplusplus.com/reference/cstdlib/strtol/) – Rogue