“Eclipsed” 是什么意思?在WinDbg中是什么意思?
在 WinDbg 的“Locals”窗口中,有几个名称的值为
。在某些情况下,同一名称多次存在,其中一个实际值和其他值显示为
。
这是什么意思以及为什么使用这个词?这是某种技术术语吗?
In the "Locals" window of WinDbg there are several names with the value <Eclipsed>
. In some cases the same name exists multiple times which one real value and the others are shown as <Eclipsed>
.
What does that mean and why is this word used? Is it some kind of technical term?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这意味着内存在函数生命周期内也被用于其他用途,或者名称在此上下文中不是唯一的。
It means that the memory is being used for something else as well within the function lifetime or that the name is not unique in this context.