接口下面的方法都是抽象方法困介,默認為 public abstract 類型,并且不是提供實現(xiàn)方法
接口屬性默認是 final static 類型
接口可以被類蘸际,抽象類實現(xiàn)
使用
public interface Fly {
int age = 10;
void fly();
void move();
}
public class Dog implements Fly{
public int age;
public Dog(int age){
this.age = age;
}
public void fly() {
System.out.println("age:" + this.age + " " + Fly.age);
}
public void move() {
}
public static void main(String[] args) {
Fly fly = new Dog(32);
fly.fly();
}
}