gpt4 book ai didi

java - 如何访问接口(interface)中的嵌套类 B?

转载 作者:行者123 更新时间:2023-11-29 05:38:25 24 4
gpt4 key购买 nike

interface C {
class B {
void run() {
System.out.println("nested class run method");
}
}
}

public class MainClass {
public static void main(String[] args) {
}
}

如何在接口(interface)C中访问类B中的run方法?

最佳答案

您必须在类的名称前加上其封闭接口(interface)的名称:

C.B runner = new C.B();
runner.run();

关于java - 如何访问接口(interface)中的嵌套类 B?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18623528/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com