接口:
public interface A {
}
接口实现类:
public class Aimp implements A {
}
测试:
import java.lang.reflect.Proxy;
public class Test {
public static void main(String[] args) {
Class<?>[] interfaces = Aimp.class.getInterfaces();
System.out.println(interfaces[0]);
Class[] c2= new Class[]{A.class};
System.out.println(c2[0]);
}
}
效果:
Snipaste_2019-07-12_22-02-27.png
测试发现
Class<?>[] interfaces = Aimp.class.getInterfaces();
是获取类的接口的全类名数组。
Class[] c2= new Class[]{A.class};
是获取接口的接口全类名数组 。
网友评论