标签:
class A
{
int i;
class B
{
int j;
int funB()
{
int result=i+j;
return result;
}
}
}
class Test
{
public static void main(String args[])
{
A a=new A();
A.B b=new A().new B();
}
}
标签:
原文地址:http://www.cnblogs.com/ansen312/p/5840004.html