2个回答
展开全部
给你个调用例子:
public class TestOut {
public void method1(){
System.out.println("outClass Method");
}
public static void main(String args[]) {
TestOut to = new TestOut();
test1 t1 = to.new test1();
t1.method();
}
class test1{
public void method(){
TestOut l = new TestOut();
l.method1();
method1();
}
}
}
public class TestOut {
public void method1(){
System.out.println("outClass Method");
}
public static void main(String args[]) {
TestOut to = new TestOut();
test1 t1 = to.new test1();
t1.method();
}
class test1{
public void method(){
TestOut l = new TestOut();
l.method1();
method1();
}
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2009-11-26
展开全部
普通内部类 可以直接调用外部类变量和方法
嵌套内部类 只能调用外部类的static变量和方法
嵌套内部类 只能调用外部类的static变量和方法
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询