/**
2 * 1.内部类可以直接访问外部类的成员,包括私有
3 * 2.外部类要访问内部类的成员必须创建对象
4 * @author jjz
5 *
6 */
public class outer {
//外部定义的方法
public void play(){
System.out.println(“我喜欢打篮球”);
}
public static void main(String[] args){
outer wai=new outer();
wai.play();
outer.inner nei=new outer().new inner();
nei.say();
}
class inner{
//内部定义的方法
public void say(){
System.out.println(“我喜欢说话”);
}
}
}