Java : Super class array object assigned with sub class array object

拟墨画扇 提交于 2021-02-05 02:53:54

问题


I'm trying to assign a sub class object array to its super class. The program compiles successfully, but I' getting an ArrayStoreException. I know that arrays parent and child are references to same array, but shouldn't I be able to access method func at least?

class Pclass
{
    Pclass()
    {
        System.out.println("constructor : Parent class");
    }

    public void func()
    { 
        System.out.println("Parent class");
    }
}

class Cclass extends Pclass
{
    Cclass()
    { 
        System.out.println("Constructor : Child class");
    }

    public void func2()
    {  
        System.out.println("It worked");
    }

    public void func()
    { 
        System.out.println("Common");
    }
}

public class test
{     
    public static void main(String ab[])
    {    
        Cclass[] child = new Cclass[10];
        Pclass[] parent = child;
        parent[0]=new Pclass();
        parent[0].func();
    }
}

回答1:


You can't do this:

Cclass[] child = new Cclass[10];
Pclass[] parent = child;
parent[0]=new Pclass();

You should try doing this:

Cclass[] child = new Cclass[10];
Pclass[] parent = child;
parent[0]=new Cclass();

That's because, You first assigned the Pclass array to the child reference that can only have Cclass objects, then you are trying to assign Pclass object to the parent reference, that's not allowed!

See, what happens is that you have created a Cclass object on the heap when you wrote new Cclass, though the Cclass objects were null in the array but now they would accept only Cclass objects or it's subclass's objects

so assigning the Pclass object would be illegal!

Reason for getting a runtime exception and not compile time:

The compiler only checks whether the classes are in the same inheritance hierarchy or not, since they are in the same hierarchy you get a Runtime exception.




回答2:


If you read the spec of ArrayStoreException, you'd find out it is thrown to indicate that an attempt has been made to store the wrong type of object into an array of objects.

You created an instance of a Cclass array, so only instances of Cclass (or sub-classes of it) may be stored in this array. The fact that you store the reference of that instance in a variable of type Pclass[] doesn't change that.




回答3:


Although the reference to the array is Pclass, they array object you are referencing is of type Cclass (you instantiated the object new Cclass[]. You cannot change the type of the object by having a variable of a different type reference it). You cannot store a Pclass object in a Cclass array.

Instead, if possible, you should create the object using the subtype:

parent[0] = new Subclass();



回答4:


You have actually instantiated a child class object in the line:Cclass[] child = new Cclass[10]; and when you instantiate a parent object using new Pclass(); you create the parent object.When you assign it to child object refernce the downcasting occurs at runtime and it fails because you are trying to store parent object into a child reference.Hence it throws ArrayStoreException i.e you are trying to store the wrong type of object into an array of objects.



来源:https://stackoverflow.com/questions/27120029/java-super-class-array-object-assigned-with-sub-class-array-object

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!