我需要我的Java applet幫助。爲什麼我的Applet中會出現NoSuchMethodError:main?
import java.awt.*;
import java.applet.*;
public class Screen extends Applet{
public void init(){
setSize(300,300);
setBackground(Color.BLACK);
}
}
當我運行它時,此錯誤不斷彈出。
Exception in thread "main" java.lang.NoSuchMethodError: main
這是一個小程序,而不是一個應用程序;顯然,除非你寫了一個,否則沒有'main'方法。 –