sunny123456

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

Java中interface的default和static方法

完整代码及其运行结果

package demo;
public class StaticandDefaultMethod {
	public static void main(String[] args) {
		Interface I = new SubClass();
		SuperClass SuperC = new SubClass();
		SubClass SubC = new SubClass();
		System.out.println("============调用d()============");
		I.d();
		SuperC.d();
		SubC.d();
		System.out.println("\n===========实例调用s()===========");
//		I.s();
		SuperC.s();
		SubC.s();
		System.out.println("\n===========直接调用s()===========");
		Interface.s();
		SuperClass.s();
		SubClass.s();	
	}	
}
//接口
interface Interface{
	default void d() {
		/**
		 * 接口的default方法d()
		 */
		System.out.println("Interface.d()");
	}
	static void s() {
		/**
		 * 接口的static方法s()
		 */
		System.out.println("Interface.s()");
	}
	static void s1() {
	}
}
//父类
abstract class SuperClass{
	static void s() {
		/**
		 * 父类的static方法s()
		 */
		System.out.println("SuperClass.s()");
	}
	void d() {
		/**
		 * 父类的d()方法
		 */
		System.out.println("SuperClass.d()");
	}
}
class SubClass extends SuperClass implements Interface{
	@Override
	public void d() {
		/**
		 * 若父类与接口有同名方法,则继承优先级父类高于接口
		 * 同时default是public,若父类同名方法不是public,则子类需实现一个public的同名方法
		 */	
		System.out.print("SubClass.d() and ");
		super.d();
	}
//	@Override
	/**
	 * 子类不能继承接口的static方法,可以继承、不能覆写父类的static方法
	 * The method s() of type SubClass must override or implement a supertype method
	 */
	static void s() {
		System.out.println("SubClass.s()");
	}
}
 

从 Java8 开始:

Java8开始,接口中可以用 default 或 static 关键字修饰方法(不能同时用)且非抽象方法。

static 方法:

接口不能通过实例调用 static 方法

接口不能通过实例调用 static 方法,但是抽象方法可以通过实例调用 static 方法。
报错:This static method of interface Interface can only be accessed as Interface.s
关于 SuperC 为什么是调用 SuperClass 的 s() 而不是 SubClass 的 s() ,个人猜测 “或许是因为 static 方法不能被覆写?” 如果有大神知道的,麻烦说一下,谢谢。
在这里插入图片描述
在这里插入图片描述

接口中的 static 方法不能被继承

子类不能继承接口的static方法,可以继承、不能覆写父类的static方法。

将 SuperClass 和 SubClass 中的 s() 方法注释:
注释 SuperClass 的 s()

注释 SubClass 的 s()
接着看到报错:( SubClass 类中未定义 s() 方法)
不能继承接口的 static 方法
接着取消 SuperClass 中 s() 方法的注释,运行结果
在这里插入图片描述
显然 SubClass 继承了 SuperClass 的 s() 方法。

然后,我们取消 SubClass 中 s() 方法的注释,并尝试覆写 s() 方法:
覆写 s()

可以看到报错:

The method s() of type SubClass must override or implement a supertype method
  • 1

default 方法:

default 关键字只能用于接口中修饰接口的方法。

接口的 default 方法可以被继承,但是若父类有与 default 同名的方法,则子类会继承父类的方法。

注释 SubClass 中的 d() ,同时注意父类中的d() 须为public在这里插入图片描述
运行结果在这里插入图片描述

接着看在这里插入图片描述
接口方法默认修饰: public abstract 。

原文链接:https://blog.csdn.net/liu18783800884/article/details/110003627
posted on 2024-07-18 19:15  sunny123456  阅读(29)  评论(0编辑  收藏  举报