博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
boost lexical_cast
阅读量:5110 次
发布时间:2019-06-13

本文共 764 字,大约阅读时间需要 2 分钟。

Boost.LexicalCast provides a cast operator, boost::lexical_cast, that can covert numberes from strings to numeric types like int or double.

#include 
#include
#include
int main() { std::string s = boost::lexical_cast
(123); std::cout << s << std::endl; double d = boost::lexical_cast
(s); std::cout << d << std::endl; return 0;}

boost::lexical_cast uses streams internally to perform the conversion. Therefore, only types with overloader operator<< and operator>> can be converted.

If a conversion fails, an exception of type boost::bad_lexical_cast, which is derived from std::bad_cast, is thrown.

转载于:https://www.cnblogs.com/sssblog/p/10978528.html

你可能感兴趣的文章
Ugly Windows
查看>>
DataGridView的行的字体颜色变化
查看>>
Java再学习——关于ConcurrentHashMap
查看>>
如何处理Win10电脑黑屏后出现代码0xc0000225的错误?
查看>>
局域网内手机访问电脑网站注意几点
查看>>
[Serializable]的应用--注册码的生成,加密和验证
查看>>
Day19内容回顾
查看>>
第七次作业
查看>>
SpringBoot项目打包
查看>>
Linux操作系统 和 Windows操作系统 的区别
查看>>
《QQ欢乐斗地主》山寨版
查看>>
文件流的使用以及序列化和反序列化的方法使用
查看>>
Android-多线程AsyncTask
查看>>
第一个Spring冲刺周期团队进展报告
查看>>
红黑树 c++ 实现
查看>>
Android 获取网络链接类型
查看>>
linux中启动与终止lnmp的脚本
查看>>
gdb中信号的处理[转]
查看>>
LeetCode【709. 转换成小写字母】
查看>>
如何在Access2007中使用日期类型查询数据
查看>>