画矩形.java

来自「200多个自己编的java程序,大家可以学一下.」· Java 代码 · 共 29 行

JAVA
29
字号
/* * 画矩形.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 + =
减小字号Ctrl + -
显示快捷键?