如何在断点部分知道Idea中的实例ID?

How to know instance id in Idea in breakpoints section?

阅读https://www.jetbrains.com/help/idea/2016.2/configuring-breakpoints.html

To limit breakpoint hits only with particular object instances using instance IDs, check the Instance filters option and type the instance ID value, or click the ellipsis button and specify instance ID in the Instance Filters dialog.

如何获取实例 ID?我应该去哪里看?

查看调试 选项卡中的变量 视图。

实例id是变量后面的数字。 因此给定变量 f1={Foo@432} f1 的实例 ID 是 432.

要知道实例 ID,您应该 expand this in Variables window 调试。实例 ID 将是 {YourClassName@instanceId}

中的 instanceId

这样,您设置实例id的那一行将只为这个实例id挂起。