填空题
当用户a刷新浏览器时,浏览器将会先卸载Applet,然后再
【15】
。
【参考答案】
加载该Applet
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
填空题
下面ButtonFrame类创建了一个容器,包含有3个按键。 import javax.swing.*; public class ButtonFrame extends JFrame JButton Button1= new JButton( Button1 ); JButton Button2= new JButton( Button2 ); JButton Button3= new JButton( Button3 ); public ButtonFrame() super( ButtonFrame ); setSize(100,150); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); JPane1 pane = new JPanel(); pane.add(Buttonl); pane.add(Button2); pane.add(Button3); 【12】 ; public static void main(String args[]) ButtonFrame bf= new ButtonFrame(); bf.show(); 请在程序代码中的画线处添上正确的语句,使程序完整。
点击查看答案&解析
填空题
类名与接口名都采用 【14】 描述符,并且所有单词的第1个字母大写。
点击查看答案&解析
相关试题
下列Applet计算数组元素的和,并在窗口坐标...