Visual Studio C++调试器,从地址获取值
如果您只知道变量的地址及其类型,是否可以在 Visual Studio 调试器中看到它的值?此外,是否可以在条件断点或数据断点中使用该地址?
我已经尝试过像这样的普通转换: (bool)(*0x05dc05d1) 这显然是愚蠢的。 ;)
谢谢
if you just know the address of a variable and the type of it, is it possible to see it's value in the visual studio debugger? furthermore, would it be possible to use this address in a conditional or data breakpoint?
i already tried plain casting like this: (bool)(*0x05dc05d1) which is obviously stupid. ;)
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
*(bool*)(0x05dc05d1)
应该可以工作。*(bool*)(0x05dc05d1)
should work.