⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 画矩形.java

📁 200多个自己编的java程序,大家可以学一下.
💻 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 + -