コードは何をしますか
super();
コンストラクタ内で行う?
たとえば、これは私のクラスのコンストラクターです
public abstract class Rectangle extends AbstractShape
{
private double height, width;
// Constructors...
public Rectangle()
{
super(); //this is how i inherit that point!
height = -1;
width = -1;
}
スーパークラスと何か関係がありますか?