作用:
将 n 进制的字符串转化为十进制
头文件:
#include <string>
用法:
stoi(字符串,起始位置,n进制),将 n 进制的字符串转化为十进制 示例:
stoi(str, , ); //将字符串 str 从 0 位置开始到末尾的 2 进制转换为十进制
但好像不是标准函数,慎用吧。
案例:
#include <iostream>
#include <string> using namespace std; int main()
{
string str = "";
int a = stoi(str, , );
cout << a << endl;
return ;
}