在 c++ 中将 int 转换为 string 的方法有:使用 to_string() 函数直接转换。使用 stringstream 类。使用 sprintf() 函数。
如何在 C++ 中将 int 转换为 string
直接转换法:
使用 to_string() 函数直接将 int 转换为 string。
#include <iostream> #include <string> int main() { int number = 123; std::string number_as_string = std::to_string(number); std::cout <p><strong>使用 stringstream:</strong></p> <p>使用 std::stringstream 类将 int 转换为 string。</p> <pre class="brush:php;toolbar:false">#include <iostream> #include <sstream> #include <string> int main() { int number = 123; std::stringstream ss; ss <p><strong>使用 sprintf:</strong></p> <p>使用 sprintf() 函数将 int 转换为 string。</p> <pre class="brush:php;toolbar:false">#include <iostream> #include <cstdio> #include <string> int main() { int number = 123; char number_as_string[10]; sprintf(number_as_string, "%d", number); std::string str_number(number_as_string); std::cout <p><strong>注意:</strong></p> <ul> <li>确保分配足够的内存来存储转换后的 string。</li> <li>使用 stoi() 函数可以将 string 转换回 int。</li> <li>C++20 引入了 std::format() 函数,可以更方便地将 int 格式化为 string。</li> </ul></string></cstdio></iostream>
登录后复制
以上就是c++++中int怎么转string的详细内容,更多请关注叮当号网其它相关文章!
文章来自互联网,只做分享使用。发布者:代号邱小姐,转转请注明出处:https://www.dingdanghao.com/article/484973.html