package ming;
class Outer {
class In {
public In(String msg) {
System.out.println(msg);
}
}
}
public class InTest extends Outer.In {
public InTest(Outer outer) {
outer.super("hello");
}
public static void main(String[] args) {
Outer out = new Outer();
InTest intest = new InTest(out);
}
}
java_类承继其他类的内部类例子
最新推荐文章于 2024-06-17 20:00:56 发布
