我们可以在 Java 类内定义接口吗?
是的,可以在类中定义一个接口,这称为嵌套接口。不能直接访问嵌套接口;需要使用内部类或使用持有此嵌套接口的类的名称来访问(实现)嵌套接口。
示例
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(); } }
广告