更改Visual Studio调试器显示char变量的方式

我有一个程序,其中使用unsigned char类型来表示整数,但是当使用Visual Studio 2005检查调试器中的变量时,它向我显示了ASCII字符表示形式,而我希望看到十进制表示形式。 有谁知道改变数据显示方式的方法吗?


假设你有一个变量foo声明为uint32_t ,并且你想显示foo就好像它实际上是一个float 。 在监视窗口中,您可以输入表达式:

*(float*)&foo

...它将显示foo作为float投射。

链接地址: http://www.djcxy.com/p/95361.html

上一篇: Change the way the Visual Studio debugger displays char variables

下一篇: VS 2008 debugger displays integers in hex