开发者

Why I can only see "??" at any address before 0x70000 in Visual Studio Debug Memeory window?

开发者 https://www.devze.com 2023-01-04 09:33 出处:网络
I am debuging with Visual Studio 2010. I want to see the raw memory bytes in the Debug Memory window. But I noticed that before 0x70000, the memory content is not shown, only a \"??\" mark for each by

I am debuging with Visual Studio 2010. I want to see the raw memory bytes in the Debug Memory window. But I noticed that before 0x70000, the memory content is not shown, only a "??" mark for each byt. Why can't I see the开发者_如何学JAVA content?


Visual Studio shows ?? for memory locations that are not mapped into your current address space. Since you can inspect any memory location within your process' 4 GB virtual address space, it only shows hex bytes for mapped memory.

0

精彩评论

暂无评论...
验证码 换一张
取 消