/*
* 1.常量修饰符:public static final
*
* 2.方法:public abstract
*
* 3.接口中的成员都是public
*
* 4.接口不可以创建对象,因为有抽象方法。需要被子类实现,子类对接口中的抽象方法全部覆盖后,子类才
可以实例化。否则子类是一个抽象类。
*
* 5.一个类可以同时实现多个接口
*
*/
class Test3{
public static void main(String[] args) {
Test t=new Test();
System.out.println(t.num); //3 对象调用成员
System.out.println(Test.num); //3 类调用成员
System.out.println(Inter.num); //3 接口名调用成员也可以
}
}
interface Inter{
public static final int num=3;
public abstract void show();
}
interface InterA{
public abstract void show();
}
class Demo{
public void function(){
}
}
|
|