c++string转换int
时间: 2023-10-28 20:16:48 浏览: 87
可以使用 `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; // 输出 123
return 0;
}
```
注意,如果字符串不能转换为整数,会抛出 `std::invalid_argument` 异常;如果转换后的整数超出了 `int` 类型的范围,会抛出 `std::out_of_range` 异常。
相关问题
c++string转换int函数
C++中可以使用`std::stoi`函数将字符串转换为整型。例如:
```c++
#include <iostream>
#include <string>
int main() {
std::string str = "123";
int num = std::stoi(str);
std::cout << num << std::endl; // 输出123
return 0;
}
```
需要注意的是,如果字符串不能成功转换为整型,则会抛出`std::invalid_argument`或`std::out_of_range`异常。可以使用try-catch语句来处理异常。
c++string转换为int
可以使用标准库函数`atoi`将C字符串转换为整数。
例如:
```c
#include <stdio.h>
#include <stdlib.h>
int main() {
char str[] = "12345";
int num = atoi(str);
printf("%d\n", num);
return 0;
}
```
输出:
```
12345
```
阅读全文