在 Java 8 中,引入了一個名為預設方法的新概念,以實現透過舊介面控制 lambda 表達式的向後相容性。此外,介面允許具有可實現的功能,而不會對將要實作介面的類別造成任何問題。在引入 Java 8 之前,介面僅允許抽象方法。此外,必須在不同的類別中提供功能。在以下部分中,將解釋預設方法的語法、工作原理和範例。
開始您的免費軟體開發課程
網頁開發、程式語言、軟體測試及其他
文法
以下是預設方法的語法。
public interface animal { default void sound() { System.out.println("This is a sample default method. . .!"); }}
眾所周知,List、集合等介面沒有forEach方法。如果添加它,集合的框架實作將會中斷。由於Java 8中引入了預設方法,因此可以對方法forEach進行預設實作。除此之外,一個類別可以實作兩個具有相同預設功能的介面。讓我們看看程式碼的歧義是如何解決的。
public interface livingthings { default void sound() { . . . System.out.println("Living things too make noise . . .") ; } } public interface animals { default void sound() { . . . System.out.println("animals too make noise . . .") ; } }
對於這種歧義有兩種解決方案。
1. 要覆寫預設方法實現,請建立您自己的方法。
public class dogs implements livingthings,animals { default void sound() { . . . System.out.println("dogs bark . . .") ;} }
2.使用super,呼叫預設方法
public class dogs implements livingthings,animals { default void sound() { . . . livingthings.super.print("dogs bark . . .") ; } }
在Java中,通常一個類別可以實作n個介面。此外,一個介面可以透過另一個介面進行擴充。假設一個類別有兩個接口,並且實作了一個預設方法;特定的類別可能會在選擇考慮呼叫哪個方法時感到困惑。為了解決這些衝突,可以做到以下幾點。
A.super.demo() ;
或
B.super.demo() ;
現在,讓我們看看普通方法和預設方法之間的一些差異
在擴充包含預設方法的介面時,可以執行下列操作。
以下是提到的範例程式:
實作預設方法的Java程式
代碼:
//Java program to implement default method public class DefExample { //main method public static void main(String args[]) { //create an object for the interface animal Animals obj = new Dog(); //call the print method obj.print( ); } } //create an interface animal interface Animals { //default method default void print( ) { System.out.println("I have four legs. . . ! !"); } static void sound() { System.out.println("I used to bark alot!!!") ; } } //create an interface <u>carnivores</u> interface Carnivores { //default method default void print( ) { System.out.println("I eat non veg. . .! !") ; } } //class that implements the other two interfaces class Dog implements Animals, Carnivores { public void print( ) { //call the print method of Animals using super Animals.super.print( ) ; //call the print method of Carnivores using super Carnivores.super.print( ); //call the sound method of Animals Animals.sound(); System.out.println("I am a Dog . . .!"); } }
輸出:
說明:在這個程式中,Animals 和 Carnivores 兩個介面有相同的預設方法 print(),並且使用 super 呼叫。
實作預設方法的Java程式
代碼:
//Java program to implement default method interface Sampleinterface{ // Since this is declared as a default method, this has to be implemented in the implementation classes default void sammethod(){ System.out.println("a default method which is newly added to the program"); } // existing public as well as abstract methods has to be implemented in the implementation classes void oldmethod(String s); } public class DefExample implements Sampleinterface{ // abstract method implementation public void oldmethod(String s){ System.out.println("The string given is: "+ s); } public static void main(String[] args) { DefExample obj = new DefExample(); //call the default method obj.sammethod(); //call the abstract method obj.oldmethod("I am the old method in the program"); } }
輸出:
說明:在這個程式中,存在一個介面Sampleinterface,它有一個預設方法sammethod(),並且被呼叫。
在 Java 8 中,提供了一個名為預設方法的新概念,用於在舊介面控制 lambda 表達式的情況下執行向後相容性。此外,介面參數對於預設方法沒有任何特定狀態。在本文中,詳細解釋了預設方法的語法、工作原理和範例。
以上是Java預設方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!