JAVA CORE - Trang 150

www.updatesofts.com

!

"

+

&

setVisible (true);

}

public void paint (Graphics g)

{

g.setPaintMode ();

g.setColor (Color.blue);

g.fillRect (50,50,40, 30);

g.setColor (Color.pink);

g.fillOval (70, 65, 30, 60);

g.setColor (Color.cyan);

g.fillRoundRect (90, 80, 70, 50, 20, 30);

g.setColor (Color.blue);

g.fillRect (50, 150, 40, 30);

g.setXORMode (Color.yellow);

g.fillOval (70, 165, 30, 60);

g.setXORMode (Color.magenta);

g.fillRoundRect (90, 180, 60, 40, 50, 20);

}


public static void main (String args[])

{

new PaintMode();

}

}

Kết quả của chương trình trên:

Hình 6.11 Paint mode

Tóm tắt

Applet là chương trình Java chạy trong trình duyệt web.
Chương trình Java đơn lẻ có thể vừa là applet, vừa là application.