c++, int 转换成 string
时间: 2024-09-20 17:12:50 浏览: 50
C++中将string类型转化为int类型
在C++中,将整数(int 类型)转换成字符串(string 类型),可以使用标准库中的`std::to_string`函数。这个函数是C++11引入的,非常方便。以下是基本的用法:
```cpp
#include <iostream>
#include <string>
int main() {
int num = 42; // 一个整数示例
std::string strNum = std::to_string(num); // 将int转换为string
std::cout << "Int to String: " << strNum << std::endl;
return 0;
}
```
在这个例子中,`num`变量被转换成了字符串`strNum`。运行程序会打印出"Int to String: 42"。如果你需要在更早的C++版本中或者想避免头文件依赖,也可以手动实现字符数组或迭代器来转换。
```cpp
// 如果是老版本C++
char temp[20];
itos(num, temp, 10); // 需要在头文件<cstdlib>中包含itoa
// 或者手动遍历转换
std::string manualConvert(int num) {
std::ostringstream oss;
oss << num;
return oss.str();
}
```
阅读全文