有关super()的疑问
public Cell(
Mgr mgr,
Log log) throws java.rmi.RemoteException {
super();
this.Mgr = mgr;
this.Log = log;
}
super()是指调用父类的无参构造函数吗?
如果没有super(),也是要调用的吧。
super是不是主要用于调用特定的父类构造函数,如有参的。在这里super没起到作用,是不是?