您的位置:首页 > 编程语言 > Java开发

[Java] 对象转型-01

2013-11-23 22:43 274 查看
 对象转型

    *1 基类引用可以指向子类对象

    *2 一个基类的引用不可以访问其子类对象新增加的成员

    *3 可以使用引用 变量 instanceof 类名 来判断该引用型变量所指向的对象是否属于该类或该类的子类

    *4 子类的对象可以当作基类的对象来使用称作向上转型,反之称为向下转型
package com.bjsxt.chap03;

public class Cast_01 {

public static void main(String[] args) {
Animal a = new Animal("name");
Cat c = new Cat("catname", "blue");
Dog d = new Dog("dogname", "block");

System.out.println(a instanceof Animal); // true
System.out.println(c instanceof Animal); // true
System.out.println(d instanceof Animal); // true
System.out.println(a instanceof Cat);    // false

a = new Dog("bigyellow", "yellow");
System.out.println(a.name);
// System.out.println(a.furcolor); 错误
System.out.println(a instanceof Animal); // true
System.out.println(a instanceof Dog);    // true
Dog d1 = (Dog)a;
System.out.println(d1.furcolor);
}

}
class Animal {
public String name;
Animal(String name) {
this.name = name;
}
}
class Cat extends Animal {
public String eyescolor;
Cat(String name, String eyescolor) {
super(name);
this.eyescolor = eyescolor;
}
}
class Dog extends Animal {
public String furcolor;
Dog(String name, String furcolor) {
super(name);
this.furcolor = furcolor;
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: