码迷,mamicode.com
首页 > 其他好文 > 详细

[开发工具]_[VS2010]_[vs2010的一个bug-使用stringstream时出现]

时间:2015-07-12 17:25:27      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:vs2010   bug   c++   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:



版权声明:本文为博主原创文章,未经博主允许不得转载。

[开发工具]_[VS2010]_[vs2010的一个bug-使用stringstream时出现]

标签:vs2010   bug   c++   stringstream   

原文地址:http://blog.csdn.net/infoworld/article/details/46851371

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