C++中将string类型转换为integer
时间: 2024-10-28 14:07:30 浏览: 10
C++中将string类型转化为int类型
在C++中,你可以使用`stoi()`函数将字符串转换为整数。这是一个示例:
```cpp
#include <iostream>
#include <string>
int main() {
std::string strNumber = "12345";
try {
int num = std::stoi(strNumber);
std::cout << "The integer representation of the string is: " << num << std::endl;
} catch (const std::invalid_argument& e) {
std::cerr << "Invalid argument: " << e.what() << std::endl;
} catch (const std::out_of_range& e) {
std::cerr << "Out of range: " << e.what() << std::endl;
}
return 0;
}
```
在这个例子中,如果`strNumber`可以成功解析为一个整数,`std::stoi`会返回该整数值;否则,它会抛出一个异常,我们可以捕获这些异常来处理转换失败的情况。
阅读全文