该程序无法使用子类而不是超类工作

时间:2019-10-18 13:29:28

标签: java inheritance subclass superclass cloudsim

有一个名为Datacenter的类,其中的构造函数为:

public Datacenter(
        String name,
        DatacenterCharacteristics characteristics,
        VmAllocationPolicy vmAllocationPolicy,
        List<Storage> storageList,
        double schedulingInterval) throws Exception {
    super(name);

    setCharacteristics(characteristics);
    setVmAllocationPolicy(vmAllocationPolicy);
    setLastProcessTime(0.0);
    setStorageList(storageList);
    setVmList(new ArrayList<Vm>());
    setSchedulingInterval(schedulingInterval);

    for (Host host : getCharacteristics().getHostList()) {
        host.setDatacenter(this);
    }

    // If this resource doesn't have any PEs then no useful at all
    if (getCharacteristics().getNumberOfPes() == 0) {
                throw new Exception(super.getName()
                    + " : Error - this entity has no PEs. Therefore, can't process any Cloudlets.");
    }

    // stores id of this class
    getCharacteristics().setId(super.getId());
}

我们使用此类在程序中创建数据中心:

private static Datacenter createDatacenter(String name, LinkedList myHarddriveList, double timeZone) {

    /* Additional codes like defining Hots */

    Datacenter datacenter = null;
    try {
        datacenter = new Datacenter(name, characteristics, 
                            new VmAllocationPolicySimple(hostList), myHarddriveList, 0);
    } catch (Exception e) {
                System.out.println("Error: " + e);
    }

    return datacenter;
}

运行程序的结果如下:

enter image description here

问题是,如果我通过扩展Datacenter类来定义自己的数据中心,则该程序将无法运行。我将MyDatacenter类定义如下:

public class MyDatacenter extends Datacenter{

    /* My own variables */

    public MyDatacenter(String name, 
           DatacenterCharacteristics characteristics, 
           VmAllocationPolicy vmAllocationPolicy,
           List<Storage> storageList, 
           double schedulingInterval) throws Exception {
        super(name, 
                characteristics, 
                vmAllocationPolicy,
                storageList, 
                schedulingInterval);
    }

    /* My own mwthods */

}

因此,如果我将createDatacenter()方法的返回类型从Datacenter更改为MyDatacenter,则该程序将无法工作。

private static MyDatacenter createDatacenter(String name, LinkedList myHarddriveList, double timeZone) {

    /* No changes */

    MyDatacenter datacenter = null;
    try {
        datacenter = new MyDatacenter(name, characteristics, 
                            new VmAllocationPolicySimple(hostList), myHarddriveList, 0);
    } catch (Exception e) {
                System.out.println("Error: " + e);
    }

    return datacenter;
}

不会将cloudlet分配给任何数据中心:

enter image description here

我什至无法将创建的Datacenter实例强制转换为MyDatacenter

2 个答案:

答案 0 :(得分:1)

根据对问题的评论,问题似乎是您覆盖了setCharacteristics(...)setSchedulingInterval(...)等方法,并在超级构造函数中调用了这些方法。

如果不了解您的系统在做什么,以及重写这些方法如何影响应用程序的内部工作,将很难给出确切的例子来说明您可能会遇到的问题。因此,我将尝试提供一个更抽象的示例,并希望我能传达出可能出现问题的想法。

假设我们有以下课程:

class SuperType {
  protected String name;

  public SuperType(String n) {
    setName( n );
  }

  protected void setName( String n ) {
    name = n;
  }    
}

class SubType extends SuperType {
  // setting 'id' happens here
  private int id = new Random().nextInt() + 1;

  {
    // initializer block, setting 'id' could happen here       
  }

  public SubType( String n ) {
    super( n ); 
    // setting 'id' could happen here as well
  }

  @Override
  protected void setName( String n ) {
    name = n + " " + id;
  }    
}

如您所见,SubType覆盖了setName(...)构造函数中使用的方法SuperType。为什么会有问题?

请考虑调用new SubType("some name")时初始化发生的顺序:

  • 构造函数SubType(...)调用超级构造函数,即SuperType(...)
  • 在执行构造函数之前,将创建并初始化实例。
    对于从上到下(超级到子类型)的层次结构中的每个类,按以下顺序进行
    • 按列出顺序排列的字段
    • 初始化程序块按其列出的顺序
    • 构造函数

因此在示例中,我们具有以下执行顺序(为简单起见,我将保留Object和不存在的初始化信息

  • SuperType(...)构造函数(因为没有初始化程序块)
  • setName(...)被调用,但这是被覆盖的版本
  • SubType字段被初始化,将id设置为随机数
  • SubType初始化程序块运行
  • SubType(...)构造函数运行

如您所见,覆盖的setName(...)是在初始化id之前执行的,因此该方法将看到的所有内容将为其默认值(原始int的值为0)。并且取决于您的应用程序可能是问题所在-重写的方法可能依赖于某些正确初始化的其他变量(例如,不为null),如果不发生这种情况,则可能仍会创建实例,但无法从您的应用程序的实例中使用观点。

答案 1 :(得分:0)

当您遇到类似情况时:

Datacenter d = new MyDatacanter(...);

d唯一可访问的方法是在超类Datacenter中定义的方法,除非您将d强制转换为MyDatacenter对象:

d.yourCustomMethod(); //won't work
((MyDataCenter) d).yourCustomMethod(); //should work fine