其他分享
首页 > 其他分享> > 接口中静态方法static

接口中静态方法static

作者:互联网

 1 public class InterDemo {
 2     public static void main(String[] args) {
 3         Inter inter = new InterImp();
 4         inter.show();
 5         inter.method();
 6 
 7         Inter.test();
 8 
 9         Flyable.test();
10 
11 
12     }
13 }
public interface Flyable {
//public static void test(){
// System.out.println("Flyable中静态方法执行");
//}
static void test() {
System.out.println("Flyable中静态方法执行");
}
}


public interface Inter {
//抽象方法
void show();

//默认方法
default void method() {
System.out.println("Inter默认方式method执行");
}

//静态方法
public static void test() {
System.out.println("Inter静态方法Test执行");
}

}
public class InterImp implements Inter, Flyable {
    @Override
    public void show() {
        System.out.println("show方法执行了");
    }

//    @Override
//    public void method() {
//        Inter.super.method();
//        System.out.println("method");
//    }

}

 

在Java中,类的多继承是不合法,但接口允许多继承。

在接口的多继承中extends关键字只需要使用一次,在其后跟着继承接口。

 

1.接口可以多继承

 

2.接口的方法声明必须是 public abstract 即便不写默认也是

 

3.接口里面不能包含方法具体实现

 

4.类实继承接口必须实现接口里申明的全部方法,除非该类是抽象类

 

5.类里面可以声明 public static final 修饰的变量

 

6.接口不能被实例化,但是可以被实现类创建

 



 

 

标签:静态方法,void,System,接口,static,Inter,public
来源: https://www.cnblogs.com/lps1944900433/p/16100412.html