0
我想運行這個代碼,它將創建一個帶有一個簡單按鈕的窗口。該程序將運行在Mac上的Netbeans,但問題是它不起作用。這是下面的代碼。在Mac上與Netbeans一起使用JFrame
import javax.swing.JFrame;
public class Test {
public static JButton button(){
JButton button = new JButton("random button");
}
public static void main(String[] args) {
button();
new JFrame();
}
}
請幫我解決這個問題。謝謝。