public class Car {
String color;
public void thisIs(){
System.out.println("Calling method from Car: the color is " + color);
}
public String getColor() {
return color;
}
public void setColor(String color) {
this.color = color;
}
}
public class BMW extends Car {
public void thisIs(){
System.out.println("Calling method from BMW: the color is " + color);
}
public Car toCar(){
Car newCar = new Car();
newCar.setColor(this.color);
return newCar;
}
}
public class AbstractTest {
public static void main(String args[]){
Car aCar = new Car();
aCar.setColor("Red");
aCar.thisIs();
BMW aBMW = new BMW();
aBMW.setColor("Black");
aBMW.thisIs();
//Car aaCar = new Car();
//aaCar = (Car)aBMW;
//aaCar.thisIs();
Car aaCar = aBMW.toCar();
aaCar.thisIs();
}
}
我希望结果是:
从 Car 调用方法:颜色为红色
BMW的调用方法:颜色为黑色
从 Car 调用方法:颜色为黑色
但是,我得到的结果是:
从 Car 调用方法:颜色为红色
BMW的调用方法:颜色为黑色
BMW的调用方法:颜色为黑色
我哪里错了?以及如何使用超类中的方法来获取子类对象中的数据?我可以toCar()
在 BMW 类中编写一个方法来做到这一点。但是,为什么铸造不起作用?提前谢谢!
好的!谢谢!
我知道为什么铸造不起作用。
所以,我在 BMW toCar() 中添加了一个方法来获得我想要的结果。