A.if ( i > 10 ) throw Exception(“something’s wrong!”); B.if ( i > 10 ) throw Exception e (“something’s wrong!”); C.if ( i > 10 ) throw new Exception(“something’s wrong!”); D.if ( i > 10 ) throw new Exception e ("something’s wrong!");
A.若用戶從applet運行的頁移動到其它頁,stop()方法就會停止第一頁中的applet B.若用戶從applet運行的頁移動到其它頁,stop()方法不會停止第一頁中的applet C.使用destroy()方法可將applet從內(nèi)存中永久刪除 D.destroy()方法可以刪除運行的applet所有使用的資源
A.FlowLayout以由上到下的方式從左到右排列組件 B.BorderLayout使用”東”、”西”、”南”、”北”,”居中”來指定組件的位置 C.GridLayout提供了類似于選項卡式的對話框的功能 D.CardLayout是最靈活的布局方案