我们可以在另一个接口或类中声明一个接口。这样的接口称为嵌套接口。
以下是管理嵌套接口的规则。
以下是嵌套界面的示例。
现场演示
class Animal { interface Activity { void move(); } } class Dog implements Animal.Activity { public void move() { System.out.println("Dogs can walk and run"); } } public class Tester { public static void main(String args[]) { Dog dog = new Dog(); dog.move(); } }
Dogs can walk and run
以上是Java中的嵌套接口的详细内容。更多信息请关注PHP中文网其他相关文章!