主题:container的常见但未解决问题?
Container pp1 = new Container();
改为:
Container pp1 = theWin.getContentPane();
就可以了,theWin.add(pp1, 0); 就可以省略了
Container pp1 = new Container();
是对的饿,我加了组件可以出现container对象,没加不可以
Container pp1 = theWin.getContentPane();这样题意完全曲解了
请回答:1、container类是具体类还是抽象类?
2、是抽象类那为什么加了却看不见?
改为:
Container pp1 = theWin.getContentPane();
就可以了,theWin.add(pp1, 0); 就可以省略了
Container pp1 = new Container();
是对的饿,我加了组件可以出现container对象,没加不可以
Container pp1 = theWin.getContentPane();这样题意完全曲解了
请回答:1、container类是具体类还是抽象类?
2、是抽象类那为什么加了却看不见?