1 | Suppose that you want to use two Buttons in an applet. The Button class is in the package java.awt. java.awt.Button b1 = new java.awt.Button( "label" ); All objects created this way are represented internally as references. |
2 | Or you can more succintly use the import statement to open the context of the package java.awt: |
3 | import java.awt.*; |
4 | public class MyApplet extends java.applet.Applet |
5 | { public void init ( ) |
6 | { Button b1 = new Button ( "start"); |
7 | Button b2 = new Button ( "stop"); |
8 | . . . |
9 | } |
10 | } |
11 | This calls the class constructor method Button to create the new instance and initialize the label . |