java.lang.NoSuchMethodError:线程“main”中的主要异常

时间:2010-05-18 08:09:46

标签: java

我不明白为什么这个消息来--------->

java.lang.NoSuchMethodError: main
Exception in thread "main" .

我知道它期待main()方法,但是我正在构建一个不包含main的applet 方法而不是包含init()方法。那我该怎么办?我的代码是关注--->

import java.applet.*;
import java.awt.*;

public class Ballbewegung1 extends Applet implements Runnable
{
// Initialisierung der Variablen

    int x_pos = 10;     // x - Position des Balles
    int y_pos = 100;    // y - Position des Balles
    int radius = 20;    // Radius des Balles

    public void init()
    {
        setBackground (Color.blue);
    }

    public void start ()
    {
        // Schaffen eines neuen Threads, in dem das Spiel lไuft
        Thread th = new Thread (this);
        // Starten des Threads
        th.start ();
    }

    public void stop()
    {

    }

    public void destroy()
    {

    }

    public void run ()
    {
        // Erniedrigen der ThreadPriority um zeichnen zu erleichtern
        Thread.currentThread().setPriority(Thread.MIN_PRIORITY);

        // Solange true ist lไuft der Thread weiter
        while (true)
        {
            // Verไndern der x- Koordinate
            x_pos ++;

            // Neuzeichnen des Applets
            repaint();

            try
            {
                // Stoppen des Threads fr in Klammern angegebene Millisekunden
                Thread.sleep (20);
            }
            catch (InterruptedException ex)
            {
                // do nothing
            }

            // Zurcksetzen der ThreadPriority auf Maximalwert
            Thread.currentThread().setPriority(Thread.MAX_PRIORITY);
        }
    }

    public void paint (Graphics g)
    {
        g.setColor  (Color.red);
        g.fillOval (x_pos - radius, y_pos - radius, 2 * radius, 2 * radius);
    }
}

而且我不知道如何使用代码tag.so plz someone ans。

2 个答案:

答案 0 :(得分:5)

小程序需要一个容器才能运行。将其嵌入html页面并使用appletviewer或Web浏览器运行它

答案 1 :(得分:1)

或者,如果您正在使用Eclipse,则需要将其作为applet运行:右键单击class - >以 - >运行Java Applet(我不确定其他IDE,但我猜他们有类似的运行选项)。