这个问题已经在这里有一个答案:
- 超()在Java中 15个回答
- 什么时候使用超()? 11个回答
什么码
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;
}
它有事情做与超类?