充分挖掘你的VC++ Debugger的潜能(一)

类别:VC语言 点击:0 评论:0 推荐:
如何在VC调试模式下显示自定义数据类型的内容

Article last modified on 2002-5-24

----------------------------------------------------------------

The information in this article applies to:

-        Microsoft Visual C++, 32-bit Editions, version 6.0, SP5

----------------------------------------------------------------

Table of Contents

如何在VC调试模式下显示自定义数据类型的内容... 1

Where?. 1

How To?. 2

你是否注意过std::string在VC IDE的Watch窗口中的显示内容?你可以轻松地看到这个std::string的字符串内容,格式如下所示:

Name     Value

strWatch   {0x00ca1109 “watch me”}

如果你把这个strWatch节点展开,就会看到std::string的members:npos,allocator,_Ptr,_Len,_Res。而且你会注意到strWatch的显示值其实就是它的member:_Ptr的值。

那么,VC IDE怎么知道该默认显示这个std::string数据类型的哪一个member呢?是谁指定的显示_Ptr的值呢?

我们首先将研究微软在哪里定义了这些东西。其次,我们将研究一下如何定义显示自己的数据类型,比如说,我有一个类CMyClass,它有一个成员变量_strValue,我希望在Watch窗口中看到这么显示:oMyClass    {0x00ca1110 “This is my class!”}。

Where?

首先要知道,只有VC++ Debugger才能做到这一点。

其次,打开你的Vstdio工作路径:
C:\Program Files\Microsoft Visual Studio\Common\MSDev98\Bin

找到AUTOEXP.DAT文件,用文本编辑器打开:

AutoExp.Dat - templates for automaticially expanding data

 

VC++ Debugger就是通过这个文件里的[AutoExpand]下的定义,来自动扩展常见的数据类型,显示它们重要元素的内容的。

 

How To?

std::basic_string<*>=<_Ptr>

这么一定义,VC++ Debugger就知道显示_Ptr的内容了。

我有一个类CMyClass,它是这么定义的:

Class CMyClass

{

   

string _strValue;

int   _nRefCount;

};

那么,我就可以在最后添加这么一句话:

; new for zhengyun’s custom data type:

CMyClass = <_strValue,su> (引用计数: <_RefCount,u>)

或者

CMyClass = <_strValue,st> (引用计数: <_RefCount,u>)

然后,保存这个文件。

 

我们来检验一下效果,这可是立即生效的!

在调试时,watch窗口就可以显示如下:

Name           Value

oMyClass       { “Hi,You can see me now.”(引用计数: 1)}

 

(To be Continued)

 

Written by [email protected]

本文地址:http://com.8s8s.com/it/it2501.htm