显示的地址是实际地址或逻辑地址
当我们打印变量的地址时,它代表实际的物理地址还是逻辑地址。
在调试模式(Visual Studio)中,相同的地址会重复显示。
When we print the address of variable does it represent the actual physical address or logical address ..
In debug mode (visual studio) same address is shown repeatedly .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您打印变量的地址时,它始终是虚拟地址。
物理内存在操作系统的低层被抽象出来,在正常操作期间,用户和开发人员很少关心物理内存。
了解有关来自 Wikipedia 的虚拟内存的更多信息
When you print the address of a variable it is always the virtual address.
Physical memory is abstracted away from you at a low level in your operating system, during normal operation users and developers will seldom ever be concerned with physical memory.
Learn more about virtual memory from Wikipedia