c++ string to int
时间: 2024-02-29 08:50:34 浏览: 158
c++ string
在C++中,可以使用几种方法将字符串转换为整数。以下是其中的一种常见方法:
1. 使用标准库函数stoi():
```cpp
#include <iostream>
#include <string>
int main() {
std::string str = "12345";
int num = std::stoi(str);
std::cout << "Converted integer: " << num << std::endl;
return 0;
}
```
这里的stoi()函数将字符串转换为整数,并返回转换后的结果。
还有其他一些方法可以实现字符串到整数的转换,例如使用sscanf()函数、使用字符串流istringstream等。每种方法都有其特定的用途和适用场景。
阅读全文