How to identify override method in Java byte code?

后端 未结 5 661
轻奢々
轻奢々 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 19:20

    You need to look up the hierarchy chain--there's nothing in the byte code that indicates it's an overridden method, because there doesn't need to be.

提交回复
热议问题