您的位置:寻梦网首页编程乐园Java天地Core JavaJava Lecture Notes

previous.gif
 (3087 bytes)

next.gif
 (2959 bytes)


Extend Index

Extend Page # 23

Listing of Button1.java

// Button1.java

// A program that creates a button

// Kevin Boone, May 1999

import java.applet.Applet;

import java.awt.*;

public class Button1 extends Applet

{

public Button1()

{

  Button myButton = new Button ("Click me");

  add (myButton);

}

} // class

Back to top

basicline.gif (170 bytes)