?? 畫矩形.java
字號:
/* * 畫矩形.java * * Created on 2004年9月24日, 上午10:39 *//** * * @author litertiger */import java.awt.*;public class 畫矩形 extends java.applet.Applet { /** Initialization method that will be called after the applet is loaded * into the browser. */ public void paint(Graphics g) { g.setColor(Color.red); g.drawRect(0,0, 10,10); g.drawRect(20,20, 20,40); g.drawRect(80,100, 40,25); } public void init() { // TODO start asynchronous download of heavy resources } // TODO overwrite start(), stop() and destroy() methods}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -