是否一个类从超类中无法继承到超类的构造方法呢??比如我定义一个
class ABCPanel extends JPanel
{.........}
而ABCPanel panel=new ABCPanel(GridLayout(X,X));就无法使用,在ABCPanel中还需重新定义:
public ABCPanel(Gridlayout layout)
{  
   super(layout);
   .........
}
是不是这样...