0
import java.awt.*;
import java.applet.*;
public class sample extends Applet
{
    String chr;
    public void init()
    {
            setBackground(Color.black);
            setForeground(Color.white);
            chr="Inside init() ---->";
    }
    public void start()
    {
            chr+="Inside start() ---->";
    }
    public void paint(Graphics g)
    {
            chr+="Inside paint() ---->";
            g.drawString(chr,10,0);
    }
}

** 这是我的第一个小程序,当我在编译器上运行它时……它显示错误……“找不到主要方法……声明为……”我不明白这个问题,因为我读过那个小程序不需要 main()。**

4

2 回答 2

0

尝试这个。

public static void main(String[] args){
        sample x = new sample();
        x.init();
    }

此外,应用程序也可以通过这样做来运行

sample x = new sample();

它只显示一个空白小程序。那是你想要做的吗?

我尝试在 Eclipse 中运行它。

于 2012-09-15T07:18:23.737 回答
-1

一个简单的谷歌搜索显示了这一点

http://www.cs.colostate.edu/helpdocs/JavaInDOS.html

于 2012-09-15T07:19:56.713 回答