我们可以在 Java 类中定义接口吗?

java 8object oriented programmingprogramming

是的,您可以在类中定义接口,它被称为嵌套接口。您不能直接访问嵌套接口;您需要使用内部类或使用包含此嵌套接口的类的名称来访问(实现)嵌套接口。

示例

public class Sample {
   interface myInterface {
      void demo();
   }
   class Inner implements myInterface {
      public void demo() {
         System.out.println("Welcome to Tutorialspoint");
      }
   }
   public static void main(String args[]) {
      Inner obj = new Sample().new Inner();
      obj.demo();
   }
}

输出

Welcome to Tutorialspoint

您还可以使用类名访问嵌套接口 −

示例

class Test {
   interface myInterface {
      void demo();
   }
}
public class Sample implements Test.myInterface {
   public void demo() {
      System.out.println("Hello welcome to tutorialspoint");
   }
   public static void main(String args[]) {
      Sample obj = new Sample();
      obj.demo();
   }
}

相关文章