Chinaunix首页 | 论坛 | 博客
  • 博客访问: 22797
  • 博文数量: 3
  • 博客积分: 537
  • 博客等级: 中士
  • 技术积分: 45
  • 用 户 组: 普通用户
  • 注册时间: 2010-03-05 01:05
文章分类
文章存档

2012年(3)

我的朋友

分类: C/C++

2012-03-29 17:46:42

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

阅读(1216) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~