C++除了可以用itoa, sprintf, boot::format,
stringstream来进行数值到std::string转换之外,boost还提供了boost/lexical_cast.hpp实现这样的类型
转换,除了字符串到数值的转换方向可能会抛出异常外,文法还是很C++的。
- #include
#include
using namespace std;
using namespace boost;
...
auto numstr = lexical_cast(12345);
阅读(1216) | 评论(0) | 转发(0) |