首页 > 代码库 > [开发工具]_[VS2010]_[vs2010的一个bug-使用stringstream时出现]
[开发工具]_[VS2010]_[vs2010的一个bug-使用stringstream时出现]
1. 注冊Microsfot之后想提交bug, 发现有这个提示, 所以提交不了bug, 有能提交的提交下吧.
You are not authorized to submit the feedback for this connection.
2. VS2010 sp1的bug, temp为居然为空.
TEST(test_Aa,StringStream) { std::stringstream ss; ss << 0; const char* temp = ss.str().c_str(); std::cout << "temp: " << temp << std::endl; }
这里我使用vs2010 sp1的temp输出为空, g++就正常输出为0.
vs2010:
temp:
备注: 应该是微软实现的标准库的问题, 找时间研究下. 暂时解决的方法就是先把stringstream转换为string, 再从string调用c_str()就会有值.
[开发工具]_[VS2010]_[vs2010的一个bug-使用stringstream时出现]
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。