In Java super.getClass() prints “Child” not “Parent” - why is that?

后端 未结 3 893
[愿得一人]
[愿得一人] 2020-12-07 02:07

In Java classes and objects, we use \"this\" keyword to reference to the current object within the class. In some sense, I believe \"this\" actually returns the object of it

相关标签:
3条回答
  • 2020-12-07 02:24

    The getClass() method returns the class of the object. Super & this reference the same object. So it is not because you reference your object with super that suddenly the object changes class, it remains an instance of the class that was used to instantiate it, hence the getClass() will always return the same Class whether you call it from this or from super.

    Super is meant to be used to reference an implementation of a method as defined in a super class, it is typically used in those methods that are being overridden in a sub class to call the original behaviour.

    0 讨论(0)
  • 2020-12-07 02:29

    The super keyword will call an overridden method in the parent. Child did not override that method. So it will faithfully return the correct class which is Child. You do not get an instance of the Parent class this way.

    0 讨论(0)
  • 2020-12-07 02:37

    A method call using super just ignores any overrides in the current class. For example:

    class Parent {
        @Override public String toString() {
            return "Parent";
        }
    }
    
    class Child extends Parent {
        @Override public String toString() {
            return "Child";
        }
    
        public void callToString() {
            System.out.println(toString()); // "Child"
            System.out.println(super.toString()); // "Parent"
        }
    }
    

    In the case of a call to getClass(), that's a method which returns the class it's called on, and can't be overridden - so while I can see why you'd possibly expect it to return Parent.class, it's still using the same implementation as normal, returning Child. (If you actually want the parent class, you should look at the Class API.)

    This is often used as part of an override, in fact. For example:

    @Override public void validate() {
        // Allow the parent class to validate first...
        super.validate();
        // ... then perform child-specific validation
        if (someChildField == 0) {
            throw new SomeValidationException("...");
        }
    }
    
    0 讨论(0)
提交回复
热议问题