字符串转int c++
时间: 2023-06-23 10:49:59 浏览: 71
c++ 字符串字符转16进制
在C++中,可以使用 `std::stoi()` 函数将字符串转换为整数。例如:
```c++
#include <iostream>
#include <string>
int main() {
std::string s = "123";
int i = std::stoi(s);
std::cout << i << std::endl; // 输出 123
return 0;
}
```
如果字符串无法转换为整数,则会引发 `std::invalid_argument` 或 `std::out_of_range` 异常。可以使用 try-catch 块来处理异常,例如:
```c++
#include <iostream>
#include <string>
#include <stdexcept>
int main() {
std::string s = "abc";
try {
int i = std::stoi(s);
std::cout << i << std::endl;
} catch (const std::invalid_argument& e) {
std::cout << "无法将字符串转换为整数" << std::endl;
} catch (const std::out_of_range& e) {
std::cout << "整数超出范围" << std::endl;
}
return 0;
}
```
阅读全文