我是 Java 初学者,我正在学习 swing api。我的代码有问题,我不知道如何修复它。请帮忙。
下面是我正在使用的代码示例:
import javax.swing.JFrame;
import javax.swing.JLabel;
public class HelloWorldApp extends JFrame {
public static void main(String args[]) {
CustomWindow w = new CustomWindow();
w.setVisible(true);
}
public CustomWindow() {
setSize(500, 500);
setTitle("Jacob Perkins");
JLabel lbl = new JLabel("Hello World!");
add(lbl);
}
}
我的问题是我收到以下错误:
invalid method declaration; return type required