我們可以在另一個介面或類別中宣告一個介面。這樣的介面稱為巢狀介面。
以下是管理巢狀介面的規則。
以下是巢狀介面的範例。
現場示範
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中文網其他相關文章!