class Point {     Point() {
       System.out.println(this.getClass().getName());
        
     }
}public class ColorPoint extends Point {    
    ColorPoint() {        super();     }
    public static void main(String[] args) {        new ColorPoint();    }}结果:ColorPoint
super()只是调用了基类的构造方法,为什么this是ColorPoint类???super是不是基类的一个实例,在子类中调用super()有什么用??