c++ 将int、float、double类型转换成string类型

使用to_string()
包含在#include 可参考https://blog.csdn.net/lzuacm/article/details/52704931?_t_t_t=0.3578803457785398
std::string to_string(int value); (1) (C++11起)
std::string to_string(long value); (2) (C++11起)
std::string to_string(long long value); (3) (C++11起)
std::string to_string(unsigned value); (4) (C++11起)
std::string to_string(unsigned long value); (5) (C++11起)
std::string to_string(unsigned long long value); (6) (C++11起)
std::string to_string(float value); (7) (C++11起)
std::string to_string(double value); (8) (C++11起)
std::string to_string(long double value); (9) (C++11起)

std::to_string是C++标准(2011年)的最新版本中引入的功能。旧的编译器可能不支持它。
如果codeblocks不能使用to_string()
这时就要更新相关头文件可参考https://blog.csdn.net/kld1412/article/details/102471089

    原文作者:ToBeTuring
    原文地址: https://blog.csdn.net/zmxSuperIT/article/details/104975202
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞