c++string 转 int
时间: 2023-06-21 10:10:51 浏览: 56
C++ 中可以使用 `stoi()` 函数将字符串转换为整数。例如:
```c++
#include <iostream>
#include <string>
using namespace std;
int main() {
string str = "123";
int num = stoi(str);
cout << num << endl; // 输出 123
return 0;
}
```
如果字符串无法转换为整数,`stoi()` 函数会抛出 `invalid_argument` 异常。可以使用 `try-catch` 语句来处理异常。例如:
```c++
#include <iostream>
#include <string>
using namespace std;
int main() {
string str = "abc";
try {
int num = stoi(str);
cout << num << endl;
} catch (const invalid_argument& e) {
cout << "无法转换为整数" << endl;
}
return 0;
}
```
相关问题
c++string转int
可以使用 stoi 函数将 C++ 中的 string 类型转化为 int 类型。例如:
```c++
std::string str = "123";
int num = std::stoi(str);
```
c++ string 转 int
可以使用 `std::stoi()` 函数将 `std::string` 类型转换为 `int` 类型。例如:
```c++
#include <iostream>
#include <string>
int main() {
std::string str = "123";
int num = std::stoi(str);
std::cout << num << std::endl;
return 0;
}
```
输出:
```
123
```
阅读全文