我们利用反射看看
interface MyI{
void show();
}
try {
Class c=Class.forName("com.itheima.MyI"); //创建MyI接口的Class对象
Method[] m=c.getMethods(); //获取所有公有的方法
for (Method method : m) {
System.out.println(method.getName()); //打印所有方法名
}
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
结果输出show,并没有Object里面的方法,所以接口并没有继承自Object
|
|