如何基于Java中的接口对象获取实现类名称
我想从我的接口对象获取实现类名称-有什么方法可以做到这一点?
我知道我可以instanceof
用来检查实现对象,但是在我的应用程序中,有将近20到30个实现相同接口的类可以重写一个特定方法。
我想弄清楚它将要调用的特定方法。
回答:
只需使用object.getClass()
-它会返回用于实现接口的运行时类:
public class Test { public interface MyInterface { }
static class AClass implements MyInterface { }
public static void main(String[] args) {
MyInterface object = new AClass();
System.out.println(object.getClass());
}
}
以上是 如何基于Java中的接口对象获取实现类名称 的全部内容, 来源链接: utcz.com/qa/420937.html