VisualStudio 2010 SP1环境

 1、设置string默认编码为utf8,只需要在文件头部加入以下代码

1 #pragma execution_character_set("utf-8") //默认使用UTF8

2、debug提示窗口显示utf8,打开C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\Packages\Debugger\autoexp.dat文件找到第412到413行,原文如下:

1 std::basic_string<char,*>{
2     preview        ( #if (($e._Myres) < ($e._BUF_SIZE)) ( [$e._Bx._Buf,s] ) #else ( [$e._Bx._Ptr,s] ))
3     stringview    ( #if (($e._Myres) < ($e._BUF_SIZE)) ( [$e._Bx._Buf,sb] ) #else ( [$e._Bx._Ptr,sb] ))

修改为以下内容

1 std::basic_string<char,*>{
2     preview        ( #if (($e._Myres) < ($e._BUF_SIZE)) ( [$e._Bx._Buf,s8] ) #else ( [$e._Bx._Ptr,s8] ))
3     stringview    ( #if (($e._Myres) < ($e._BUF_SIZE)) ( [$e._Bx._Buf,s8b] ) #else ( [$e._Bx._Ptr,s8b] ))

参考:

  1. autoexp.dat入门http://www.thecodeway.com/blog/?p=924

VS2013修改autoexp.dat已经无效,需要修改

C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Packages\Debugger\Visualizers\stl.natvis文件,大约755-758行

1 <Type Name="std::basic_string&lt;char,*&gt;">
2     <DisplayString Condition="_Myres &lt; _BUF_SIZE">{_Bx._Buf,s8}</DisplayString>
3     <DisplayString Condition="_Myres &gt;= _BUF_SIZE">{_Bx._Ptr,s8}</DisplayString>
4     <StringView Condition="_Myres &lt; _BUF_SIZE">_Bx._Buf,s8</StringView>
5     <StringView Condition="_Myres &gt;= _BUF_SIZE">_Bx._Ptr,s8</StringView>

 

相关文章:

  • 2022-12-23
  • 2021-11-06
  • 2022-12-23
  • 2022-12-23
  • 2021-08-01
  • 2021-11-11
  • 2021-05-14
猜你喜欢
  • 2022-02-20
  • 2021-09-09
  • 2021-08-10
  • 2021-05-19
  • 2021-04-23
  • 2021-12-03
相关资源
相似解决方案