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.
可能重复: 在 Java 中获取当前堆栈跟踪
事情是这样的,我想得到一个java类中所有被调用方法的列表。到目前为止,我一直在使用 eclemma,但这还不够。我还想要调用方法的顺序。
您可以在调用每个方法时记录它(如果您愿意,可以使用它的参数)。您可以为每个方法添加一行或使用 AOP 为您执行此操作。