做Java的实验作业的时候, 遇到了如下错误:
附上代码:
public class Point3D extends Point2D {
int x, y, z; //分别为三维空间的坐标
public static void main(String[] args) {
Point2D p2d1 = new Point2D(1, 1);
Point2D p2d2 = new Point2D(4, 5);
System.out.println();
}
//Point3D的有参构造方法
public Point3D(int x, int y, int z) {
this.x = x;
this.y = y;
this.z = z;
}
public Point3D(Point2D p, int z) {
this.x = p.x;
this.y = p.y;
this.z = z;
}
}
class Point2D {
int x, y; //分别为二维空间的坐标
//Point2D的有参构造方法
public Point2D(int x, int y) {
this.x = x;
this.y = y;
}
}
看了我好久, 感觉没错呀, 咋就不能通过编译呢?
最后解决办法如下:
public class Point3D extends Point2D {
int x, y, z; //分别为三维空间的坐标
public static void main(String[] args) {
Point2D p2d1 = new Point2D(1, 1);
Point2D p2d2 = new Point2D(4, 5);
System.out.println();
}
//Point3D的有参构造方法
public Point3D(int x, int y, int z) {
this.x = x;
this.y = y;
this.z = z;
}
public Point3D(Point2D p, int z) {
this.x = p.x;
this.y = p.y;
this.z = z;
}
}
class Point2D {
int x, y; //分别为二维空间的坐标
//Point2D的无参构造方法 -> 必须加上, 否则报错
public Point2D() {
}
//Point2D的有参构造方法
public Point2D(int x, int y) {
this.x = x;
this.y = y;
}
}
看出来区别在哪里了吗? 没错, 就是要在父类中添加无参构造方法.
理由如下:
在对子类实例化的时候, 必然要调用父类的无参构造方法, 也就是默认构造方法, 如果父类创建了有参构造方法, 那么系统就不会自动创建无参构造方法. 这时, 对子类实例化的时候, 就找不到父类的默认构造方法了, 编译就会报如上错误. 但是, 如果子类指定调用了父类的有参构造方法时, 就不会报错. 但whatever, 我们最好还是将类的无参构造方法写好.
<-!!! 话不多说, 我要去赶作业了, 飞起 !!!->