A.image是要繪制的圖像 B.x,y是表示圖像的中心的位置 C.width是源圖像的寬度 D.this是容器
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從內存中永久刪除 D.destroy()方法可以刪除運行的applet所有使用的資源