我有一个扩展超类型的类,并且还实现了几个接口。在那个类中,我还有一个被覆盖的方法。问题是我如何快速找出这种方法在使用的超类型或接口之一中的来源,而不必一一遍历类型?就像这个例子:class HelloWorld extends ParentType implements InterfaceA, InterfaceB, interfaceC { // yes it's a overriden method, but is it from ParentType // or InterfaceA, or InterfaceB, or InterfaceC ? @Override public void hello() { // do sth here } ...}此外,父类型或接口都可以扩展其他类型,这些类型可能具有覆盖方法。
添加回答
举报
0/150
提交
取消