标签: java eclipse debugging identifier
Eclipse的“调试”面板显示了线程列表。如果线程已暂停并且正在等待对象的锁,则Eclipse将显示waiting for: (id=101)。如何使用Eclipse向我显示ID为101的对象?
waiting for: (id=101)
注意:这是调试器分配的ID,与System.identityHashCode()或hashCode()无关。
System.identityHashCode()
hashCode()
注意:This question询问如何根据给定的对象获取对象的ID。我的问题是相反的。