首页 > 编程语言 > 详细

C++ 遇到的问题小结

时间:2015-11-04 23:01:25      阅读:298      评论:0      收藏:0      [点我收藏+]

原始code如下:  

 1                           int id2;
 2                           std::string label2;
 3                           std::string line;
 4 
 5                           while(getline(file, line)){
 6                             label2 = line.substr(5, line.size());
 7                             id2 = line.substr(1,4);
 8 
 9                             if (id2 == xxx)
10                                 break;
11                         }

提示错误:

cannot convert ‘std::basic_string<char>‘ to ‘int‘ in assignment ...

解决方法:

1                         while(getline(file, line)){
2                             label2 = line.substr(5, line.size());
3                             id2 = atoi((line.substr(1,4)).c_str());
4 
5                             if (id2 == xxx)
6                                 break;
7


参考网址:http://www.cplusplus.com/forum/general/13135/

 

C++ 遇到的问题小结

原文:http://www.cnblogs.com/wangxiaocvpr/p/4937524.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!