私はこのコードを持っています
public class watermark {
public static void main(String[] args) {
wmmain m = new wmmain();
m.setSize(800, 500);
m.setVisible(true);
}
class wmmain extends JFrame /* MAIN WINDOW */
{
JMenuBar jmb;
// ......
}
}
コマンドプロンプトからは正常に動作しますが、Eclipseでコードを実行しようとすると、次のエラーが表示されます:
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
No enclosing instance of type watermark is accessible. Must qualify the allocation with an enclosing instance of type watermark (e.g. x.new A() where x is an instance of watermark).
at watermark.main(watermark.java:20)
私は何をすべきか??