------- <a href="http://www.itheima.com" target="blank">android培训</a>、<a href="http://www.itheima.com" target="blank">java培训</a>、期待与您交流! ----------
内部类的访问规则:
1.内部类可以直接访问外部类中的成员,包括私有。
之所以可以直接访问外部类中的成员,是因为内部类中持有了一个外部类的引用,格式 Outer.this.x
2,当内部类在成员位置上,就可以被成员修饰符所修饰。
比如,private:将内部类在外部类中进行封装。
static:内部类就具备static的特性。
当内部类被static修饰后,只能直接访问外部类中的static成员,出现了访问局限
在外部其他类中,如何直接访问static内部类的非静态成员呢?
new Outer.Inter().funtion();(static class Inner)
在外部其他类中,如何直接访问static内部类的静态成员呢?
Outer.Inner.funtion();
注意:当内部类定义了静态成员,该内部类必须是static的。
当外部类中的静态方法访问内部类时,内部类也必须是static的
当描述事物时,事物的内部还有事物,该事物用内部类来描述。
因为内部事物在使用外部事物的内容。
例子:人体
=====================================================================================================
内部类定义在局部时,
1,不可以被成员修饰符修饰
2,可以直接访问外部类中的成员,因为还持有外部类中的引用
但是不可以访问它所在的局部中的变量,只能访问被final修饰的局部变量
匿名内部类
1.匿名内部类就是内部类的简写格式
2.定义匿名内部类的前提
内部类必须是继承一个类或者实现接口
3.匿名内部类的格式:new 父类或者接口(可以有构造函数){定义子类的内容}.show();
4.匿名内部类就是一个匿名子类对象,而且这个对象有点胖,带内容的对象
interface Inter
{
void method();
}
class Test
{
static Inter function(){
return new Inter(){
public void method(){
System.out.println("show method()");
}
};
}
}
class InnerClassTest
{
public static void main(String[] args){
Test.function().method();
show(new Inter(){
public void method(){
System.out.println("method()");
}
}
});
public static void show(){
in.method();
}
}
class InnerTest
{
public static void main(String[] args)
{
new Object()
{
public void function()
{
syso;
}
}.function;
}
}