Alternative to itoa() for converting integer to string C++?(替代 itoa() 将整数转换为字符串 C++?)
问题描述
我想知道是否有 itoa()
的替代方法可以将整数转换为字符串,因为当我在 Visual Studio 中运行它时会收到警告,并且当我尝试在Linux,我得到一个编译错误.
I was wondering if there was an alternative to itoa()
for converting an integer to a string because when I run it in visual Studio I get warnings, and when I try to build my program under Linux, I get a compilation error.
推荐答案
在 C++11 中你可以使用 std::to_string
:
In C++11 you can use std::to_string
:
#include <string>
std::string s = std::to_string(5);
如果您使用的是 C++11 之前的版本,则可以使用 C++ 流:
If you're working with prior to C++11, you could use C++ streams:
#include <sstream>
int i = 5;
std::string s;
std::stringstream out;
out << i;
s = out.str();
取自 http://notfaq.wordpress.com/2006/08/30/c-convert-int-to-string/
这篇关于替代 itoa() 将整数转换为字符串 C++?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:替代 itoa() 将整数转换为字符串 C++?
- 静态初始化顺序失败 2022-01-01
- Stroustrup 的 Simple_window.h 2022-01-01
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- 近似搜索的工作原理 2021-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07
- C++ 协变模板 2021-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- 从python回调到c++的选项 2022-11-16
- STL 中有 dereference_iterator 吗? 2022-01-01