如题,java中知道某个类如何获取他有那些接口
Java
------解决方案--------------------
Class类的getInterfaces() /getGenericInterfaces()
------解决方案--------------------
Class myClass = Class.forName("MyClass");
myClass.getDeclaredInterfaces()