Sting转int
时间: 2023-06-21 12:19:11 浏览: 149
STING(a STatisticalINformationGrid approach)
4星 · 用户满意度95%
您好,将字符串转换为整数可以使用内置的函数atoi(),示例如下:
```c++
#include <iostream>
#include <cstdlib>
using namespace std;
int main() {
string str = "123";
int num = atoi(str.c_str());
cout << "String: " << str << endl;
cout << "Int: " << num << endl;
return 0;
}
```
输出结果为:
```
String: 123
Int: 123
```
需要注意的是,如果转换的字符串不是一个合法的数字格式,那么将会返回0。如果需要处理转换失败的情况,可以使用异常处理或者其他方式进行处理。
阅读全文