Java 8에서는 이전 인터페이스로 람다 표현식을 제어하는 하위 호환성을 수행하기 위해 기본 메서드라는 새로운 개념이 도입되었습니다. 또한, 인터페이스가 구현될 클래스에 문제를 일으키지 않고 인터페이스가 구현 기능을 가질 수 있습니다. Java 8이 도입되기 전에는 인터페이스에서 추상 메소드만 허용되었습니다. 더욱이 기능은 다양한 클래스에서 제공되어야 했습니다. 다음 섹션에서는 기본 메소드의 구문, 작업 및 예를 설명합니다.
무료 소프트웨어 개발 과정 시작
웹 개발, 프로그래밍 언어, 소프트웨어 테스팅 등
구문
다음은 기본 메소드의 구문입니다.
public interface animal { default void sound() { System.out.println("This is a sample default method. . .!"); }}
알다시피 List 및 컬렉션과 같은 인터페이스에는 forEach 메서드가 없습니다. 추가되면 컬렉션의 프레임워크 구현이 중단됩니다. 기본 메소드가 Java 8에 도입되었으므로 forEach 메소드에 대해 기본 구현을 수행할 수 있습니다. 그 외에도 동일한 기본 기능으로 2개의 인터페이스를 구현하는 클래스를 만들 수 있습니다. 코드의 모호함이 어떻게 해결되는지 살펴보겠습니다.
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에서는 이전 인터페이스가 람다 표현식을 제어하는 하위 호환성을 수행하기 위해 기본 메서드라는 새로운 개념이 제공됩니다. 또한 인터페이스 인수에는 기본 메서드에 대한 특정 상태가 없습니다. 이 글에서는 기본 메소드의 구문, 작동 방식, 예시에 대해 자세히 설명합니다.
위 내용은 Java 기본 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!