----------------------android培训、java培训、期待与您交流! ---------------------
1.多态中如何使用子类的特有方法----类型转换。
Animal static void main(String[] args)
{
//类型提升,向上转型。向父类提升
Animal cat = new Cat();
//如果想要调用猫的特有方法时,如何操作?
//强制将父类的引用,转成子类类型。向下转型。
Cat c = (Cat)a;
c.catchMouse();
//千万不要出现,将父类对象转成子类类型。
//能转换的是父类引用指向了自己的子类对象时,该引用可以被提升,也可以被强制转换。
//多态自始至终都是子类对象的引用在做着父类型或子类型的转化。
// Animal a = new Animal();
// Cat c = (Cat)a;
}
示例代码如下:
public static void function(Animal a)
{
a.eat();
if(a instanceof Animal)
{
System.out.print("dfg");
}
if(a instanceof Cat)
{
Cat c = (Cat)a;
c.catchMouse();
}
else if(a instanceof Dog)
{
Dog d = (Dog)a;
d.kanJia();
}
}
只要把事物不断的向上抽象,总能找到事物的共同点。
2.关于内部类的总结
a.类可以被私有化,内部类,当内部类属于外部类的成员时。。。
内部类,之所以可以直接访问外部类中的成员,是因为内部类中持有了一个外部类的引用,
格式:外部类类名.this.成员名
对于非静态成员,先有对象,才能用里面的成员。
c.静态内部类
ex1:
class Outer
{
private static int x = 3;
static class Inner //静态内部类
{
void function1()
{
System.out.println("inner :"+x);
}
static void function2()
{
System.out.println("inner :"+x);
}
}
}
class InnerClassDemo
{
public static void main(String[] args)
{
Outer.Inner.function2();
new Outer.Inner().function1();
}
}
内部类可以被static修饰,内部类就具备了static的特性。
ex2:
class Outer
{
private static int x = 3;
static class Inner //静态内部类
{
void function()
{
System.out.println("inner :"+x);
}
}
static class Inner2
{
void show()
{
System.out.println("inner2 show");
}
}
public static void method()
{
// Inner.function();
new Inner2().show();
}
}
class InnerClassDemo
{
public static void main(String[] args)
{
Outer.method(); //静态方法可以访问静态成员
}
}
注意:::当内部类中定义了static成员,该内部类必须是static的。当外部类中的静态方法访问内部类时,内部类也必须是static
d.关于内部类的使用原则
当描述事物时,事物的内部还有事物,该事物用内部类来描述。
因为内部事务在使用外部事物的内容。
当a类需要直接访问到b类中的成员时,就可以把a类写到b类里面,称为b类的成员,最好把a类封转在b类中,只提供对外的访问方法来访问内部成员。
内部类都定义在外部类成员的位置上,只有内部类定义在成员位置上才能被private和static,一般内部类是不会被public修饰的。
非静态方法,没对象,不执行。
ex3:
/*
内部类定义在局部时,
1.不可以被成员修饰符修饰
2.可以直接访问外部类中的成员,因为还持有外部类中的引用。
但是不可以访问他所在的局部中的变量,只能访问被final修饰的局部变量。
*/
class Outer
{
int x = 3;
void method()
{
class Inner //不能被static和private修饰,不能修饰局部
{
final int y = 4;
void function()
{
System.out.println(Outer.this.x);
System.out.println(y);
}
}
new Inner().function();//要放在内部类定义之后,
}
}
class InnerClassDemo3
{
public static void main(String[] args)
{
new Outer().method();
}
}
e.匿名内部类及其应用
1.匿名内部类,其实就是内部类的简写格式。
2.定义匿名内部类的前提:匿名内部类必须是继承一个类或者实现接口。
3.匿名内部类的格式: new 父类或者接口(){定义子类的内容}
4.其实匿名内部类就是一个匿名子类对象。而且这个对象有点胖。可以理解为带内容的对象。
5.匿名内部类中定义的方法最好是1,2个。匿名内部类就是为了简化才存在的,如果父类中需要实现的抽象方法过多,就不用匿名内部类。
---------------------------------
1.内部类继承了一个类
2.对父类方法进行复写
3.外部方法新建了一个对象
4.新建的对象调用内部类方法
ex4:
interface Inter
{
void method();
}
class Test
{
//补足代码,通过匿名内部类
/* static class Inner implements Inter
{
public void method()
{
System.out.println("method run");
}
}
*/
static Inter function()
{
return new Inter()
{
public void method()
{
System.out.println("method run");
}
};
}
}
class InnerClassTest
{
public static void main(String[] args)
{
//Test.function():Test类中有一个静态方法function。
//.method():function这个方法运算后的结果是一个对象。而且是一个Inter类型的对象。
//因为只有是Inter类型的对象,才可以调用method方法。
Test.function().method();
//匿名内部类的应用。。。
show(new Inter()
{
public void method()
{
System.out.println("method show run");
}
});
// Inter in = Test.function();
// in.method();
// System.out.println("Hello World!");
}
public static void show(Inter in)
{
in.method();
}
}
-----------------------android培训、java培训、期待与您交流! ----------------------
详细请查看:http://edu.csdn.net/heima