예, Java 9의 인터페이스에는 비공개 메소드 또는 비공개 정적 메소드 가 있을 수 있습니다. 이러한 방법을 사용하여 코드 중복을 제거할 수 있습니다. 비공개 메서드 는 이 인터페이스 내에서만 유용하거나 액세스할 수 있습니다. 한 인터페이스에서 다른 인터페이스나 클래스로 프라이빗 메서드에 액세스하거나 상속할 수 없습니다.
<strong>interface <interface-name> { private static void methodName() { // some statements } private void methodName() { // some statements } }</strong>
interface Java9Interface { public abstract void method1(); public default void method2() { method4(); method5(); System.out.println("Inside default method"); } public static void method3() { method5(); <strong>// static method inside other static method</strong> System.out.println("Inside static method"); } private void method4() { <strong>// private method</strong> System.out.println("Inside private method"); } private static void method5() { <strong>// private static method</strong> System.out.println("Inside private static method"); } } public class PrivateStaticMethodTest implements Java9Interface { @Override public void method1() { System.out.println("Inside abstract method"); } public static void main(String args[]) { Java9Interface instance = new PrivateStaticMethodTest(); instance.method1(); instance.method2(); Java9Interface.method3(); } }
<strong>Inside abstract method Inside private method Inside private static method Inside default method Inside private static method Inside static method</strong>
위 내용은 Java 9에서는 인터페이스에 개인 메소드 또는 개인 정적 메소드를 정의할 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!