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

VC7(VS2002)调试时 std::string 超过15字符乱码问题

时间:2015-07-29 19:25:21      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:

VC7(VS2002)调试时 std::string 超过15字符乱码问题

VC8(VS2005)无此问题。



std::string str = "1234567890123456";        
const char* p    = str.c_str();
调试时:str的值是乱码,p是正确值。

可能是VS2002的bug,根源可能是:
std::string 不超过15字符保存在_Bx.Buf中,否则保证在_Bx.Ptr中。
调试时VC7总是读取的_Bx.Buf。

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

VC7(VS2002)调试时 std::string 超过15字符乱码问题

标签:

原文地址:http://blog.csdn.net/he_zhidan/article/details/47131119

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