接口的特点
1,接口是对外暴露的规则
2,接口是程序的功能扩展
3,接口可以用来多实现
4,接口与类之间是实现关系,而且类可以继承一个类的同时实现多个接口
5,接口与接口可以有继承关系。
*/
interface Inter
{
public static final int NUM=3;
public abstract void show();
}
interface InterA
{
public abstract void method();
}
class Demo
{
public void function(){};
}
class Test extends Demo implements Inter,InterA
{
public void show(){};
}
interface A
{
void methodA();
}
interface B extends A
{
void methodB();
}
interface C extends B
{
void methodC();
}
class D implements C
{
public void methodA(){}
public void methodB(){}
public void methodC(){}
}
class InterfaceDemo
{
public static void main(String[] args)
{
Test t=new Test();
System.out.println(t.NUM);
System.out.println(Test.NUM);
System.out.println(Inter.NUM);
}
}