How to identify override method in Java byte code?

后端 未结 5 660
轻奢々
轻奢々 2021-01-12 18:30

I\'m now focusing on a project requiring insight of Java byte code.

With the help of bcel, I can now complete most of the work. One point that I\'m now not clear is

5条回答
  •  南笙
    南笙 (楼主)
    2021-01-12 18:57

    You could decompile it and load the code as a project in the IDE of you choice. Normally you can easily jump to overridden methods from the inheriting class.

提交回复
热议问题