有一个类 U1 正在扩展类 U。类 U 是空的......
在 U1 的构造函数中有第一行,调用超类的构造函数......
public U1(Plate plate, int order)
{
super(plate, order);
...
}
现在我想删除 U1 类并在 U1 类中执行迄今为止在 U1 中所做的任何事情......所以,现在我不需要调用超类的构造函数,因为 U 类不会有任何超类......
是this(plate, order)
不必要的,我可以省略吗?
这就是我的 U 构造函数的样子:
public U(Plate plate, int order)
{
this(plate, order);
...
}