std::string int
时间: 2024-02-01 21:10:37 浏览: 113
将Windows字符串资源加载到std :: string或std :: wstring中
std::string和int之间的相互转换在C++中是非常常见的操作。下面是两种常用的方法:
1. 使用std::to_string()函数将int转换为std::string:
```cpp
int num = 123;
std::string str = std::to_string(num);
```
2. 使用std::stoi()函数将std::string转换为int:
```cpp
std::string str = "456";
int num = std::stoi(str);
```
这两种方法可以在C++中方便地实现std::string和int之间的转换。
阅读全文