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

Java中对象转换的理解

2011-03-09 17:01 204 查看
Java的变量类型之间可以进行转换,对象之间也可以。

子类对象转为父类对象,可以不进行强制转换,因为子类继承父类对象。

但是,当父类对象转换为子类对象时(当且仅当父类对象本来是由子类默认转换过去的情况),可以对父类对象进行强制转换。

public class TestObject {
public static void main(String[] args) {
// TODO Auto-generated method stub

Animal a = new Animal();
Dog d = new Dog("yellow");
d.name = "bigYellow";
System.out.println( a.print( d ) );
}
}

class Animal{
String name;

public void setName(String n){
this.name = n;
}

public String getName(){
return this.name;
}

public String print(Animal a){
String result = "";
if (a instanceof Dog) {
Dog d = (Dog)a;
result = "Name:" + a.name + "\n" + "FurColor:" + d.furColor;
}else if (a instanceof Cat) {
Cat c = (Cat)a;
result = "Name:" + a.name + "\n" + "EyeColor:" + c.eyeColor;
}else{
result = "Name:" + a.name;
}
return result;
}
}

class Cat extends Animal{
String eyeColor;
public void setEyeColor(String e){
this.eyeColor = e;
}
public String getEyeColor(){
return this.eyeColor;
}

Cat(String e){
this.setEyeColor(e);
}
}

class Dog extends Animal{
String furColor;
public void setFurColor(String f){
this.furColor = f;
}
public String getFurColor(){
return this.furColor;
}

Dog (String d){
this.setFurColor(d);
}
}

96堆栈 软件编程网http://www.96dz.com,提供C语言、C++编程、VC++编程、Java编程、C#编程、NET编程、Linux编程、Web编程等全面技术信息
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: