码迷,mamicode.com
首页 > 编程语言 > 详细

c++从string类型转换为bool类型

时间:2018-05-15 01:43:57      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:转换   ++   string   alpha   bool   类型转换   利用   stream   str   

利用输入字符串流:std::istringstream

bool b;  

std::string s = "true";  

std::istringstream(s) >> std::boolalpha >> b;  

但当字符串s为“1”时,上面的代码无法正确转换,此时应该用:

 bool b;  

std::string s = "1";  

istringstream(s) >> b;  

c++从string类型转换为bool类型

标签:转换   ++   string   alpha   bool   类型转换   利用   stream   str   

原文地址:https://www.cnblogs.com/tianzeng/p/9038769.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!