Class A{}Class B{A a; //另一个类A的对象a作为B类的成员变量public B(){a=new A();}}
如果你学过C语言的话把类理解成结构,只是在A结构里面嵌套了B结构。
struct a{int w;int k;}struct b{struct a a1int l;}