画直线.java

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

JAVA
30
字号
/* * 画直线.java * * Created on 2004年9月24日, 上午10:35 *//** * * @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.drawLine(2, 2, 40,40);        g.drawLine(0,0,160,23);        g.drawLine(100,100,200,200);        }    public void init() {        // TODO start asynchronous download of heavy resources    }        // TODO overwrite start(), stop() and destroy() methods}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?