Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在 IntelliJ IDEA 中加载特定的 Java 类时设置断点?
从来没听说过。但是如果你试图确定一个类是从哪里开始加载的,你可以在类的构造函数(或静态字段/块)中放置一个断点,然后查看堆栈跟踪。这应该告诉您第一次呼叫班级的地方。
在 2016 版本中,它通过将断点设置到类定义行 ( public class YourClass ...) 来工作。您不必使用显式构造函数,它会在... new YourClass();被调用时停止。
public class YourClass ...
... new YourClass();