package einstein;
import javax.swing.JApplet;
import java.awt.*;
启动小程序
public class Einstein extends JApplet
{
//--------------------------------------------------------|
//draws a quotation from albert einstein among some shapes|
//--------------------------------------------------------|
@Override
public void paint (Graphics page)
{
下一行表达式的非法开头
page.drawRect (50, 50, 40, 40,); //square
page.drawRect (60, 80, 225, 30); //rectangle
page.drawOval (75, 65, 20, 20); //circle
page.drawLine (35, 60, 100, 120); //line
page.drawString ("Out of clutter, find simplicity.", 110, 70);
page.drawString ("-- Albert Einstein", 130, 100);
}
}
它最初有油漆(图形页面)的问题,但显然@overide 解决了这个问题