Interface中的方法被default修饰
在Java 8中,引入了default
方法的概念,使得接口可以包含具体的方法实现。被default
修饰的方法称为默认方法。这意味着接口不仅可以声明方法,还可以提供方法的默认实现。
默认方法的主要作用包括:
-
向后兼容:在不破坏现有实现的情况下,向接口添加新方法。例如,如果在一个已经广泛使用的接口中添加新方法,所有实现该接口的类都需要实现这个新方法。通过使用默认方法,可以为新方法提供一个默认实现,从而避免破坏现有代码。
-
代码复用:允许接口提供一些通用的功能实现,减少代码重复。
语法示例
public interface MyInterface {// 抽象方法void abstractMethod();// 默认方法default void defaultMethod() {System.out.println("This is a default method.");}
}public class MyClass implements MyInterface {@Overridepublic void abstractMethod() {System.out.println("This is an abstract method implementation.");}// 可以选择重写默认方法@Overridepublic void defaultMethod() {System.out.println("This is an overridden default method.");}public static void main(String[] args) {MyClass myClass = new MyClass();myClass.abstractMethod(); // 输出: This is an abstract method implementation.myClass.defaultMethod(); // 输出: This is an overridden default method.}
}
在上述示例中,MyInterface
接口包含一个抽象方法abstractMethod
和一个默认方法defaultMethod
。MyClass
实现了MyInterface
,并且重写了默认方法defaultMethod
。
默认方法可以不被重写吗
默认方法可以不被重写。如果一个类实现了一个包含默认方法的接口,但没有重写该默认方法,那么该类将继承并使用接口中提供的默认实现。
示例
public interface MyInterface {// 抽象方法void abstractMethod();// 默认方法default void defaultMethod() {System.out.println("This is a default method.");}
}public class MyClass implements MyInterface {@Overridepublic void abstractMethod() {System.out.println("This is an abstract method implementation.");}// 没有重写 defaultMethodpublic static void main(String[] args) {MyClass myClass = new MyClass();myClass.abstractMethod(); // 输出: This is an abstract method implementation.myClass.defaultMethod(); // 输出: This is a default method.}
}
在这个示例中,MyClass
实现了MyInterface
,但没有重写默认方法defaultMethod
。因此,当调用myClass.defaultMethod()
时,将使用接口中提供的默认实现,输出 “This is a default method.”。
总结
- 默认方法可以不被重写。如果不重写,类将使用接口中提供的默认实现。
- 如果需要,可以选择重写默认方法以提供特定的实现。