Java:如何在子类中填充变量?

时间:2016-11-05 05:03:20

标签: java subclass low-level-code

所以这不是作业,但我的演讲幻灯片之一没有说清楚,当我尝试自己编写类似的东西时,我遇到了一个问题。

我无法弄清楚如何填充我的子类中的变量。

到目前为止,这是我的测试代码:

实施班:

import javax.swing.JOptionPane;

公共课堂{

/**
 * @param args the command line arguments
 */
public static void main(String[] args) {
    int count = 0;
    room[] r = new room[3];
    int option = JOptionPane.showConfirmDialog(null, "type");
    if(option==0){
        r[count]=new type();
        r[count].setSize(25);
        r[count].setType("Bedroom");
    }
    else if(option==1){
        r[count] = new room();
        r[count].setSize(25);
    }

    JOptionPane.showMessageDialog(null, r[count].toString());
}

}

超类:

public class room {
double size;

public room(){

}

public room(double size){
    this.size=size;
}

public double getSize(){return this.size;}

public boolean setSize(double size){
    if(size<0.0){
        return false;
    }
    else{
        return true;
    }
}
 public String toString(){
     return "Room size: " + this.size;
 }

}

子类:

public class type extends room {
String type;

public type(){

}

public type (double size, String type){
    super(size); 
    this.type=type;
}

public String getType(){return this.type;}

public boolean setType (String type){
    if(type.equals("")){
        return false;
    }
    else{
        return true;
    }
}

public String toString(){
    return super.toString() + "Room Type: " + this.getType();
}

}

当我尝试运行代码时,如果我尝试将数据插入类型类中的setType()方法,它会给我一个错误。有人可以告诉我我搞砸了吗?谢谢!

1 个答案:

答案 0 :(得分:1)

记住原始指针:

if(option==0){
    type t = new type();
    t.setSize(25);
    t.setType("Bedroom");
    r[count]= t;
}

或者您可以转换为原始类型:

    ((type) r[count]).setType("Bedroom");