stoi函数
时间: 2023-10-13 08:08:28 浏览: 181
stoi_STOI_
5星 · 资源好评率100%
在C++中,stoi函数用于将字符串转换为整数。它的完整定义如下:
```cpp
int stoi(const string& str, size_t* pos = 0, int base = 10);
```
其中,str表示需要转换的字符串,pos表示转换失败时的停止位置(默认值为0),base表示转换时的进制数(默认值为10)。
例如,下面的代码将字符串"123"转换为整数并打印出来:
```cpp
#include <iostream>
#include <string>
using namespace std;
int main()
{
string str = "123";
int num = stoi(str);
cout << num << endl;
return 0;
}
```
输出结果为:
```
123
```
阅读全文