我正在創建一個按鈕,點擊後會直接進入網站。但我的代碼有錯誤。該錯誤表示非靜態變量不能從靜態上下文中引用。爲什麼我被告知非靜態變量不能從靜態上下文中引用?
public static void main(String[] args) throws Exception {
JFrame frame = new JFrame("JLinkButton");
frame.getContentPane().setLayout(new BorderLayout());
frame.getContentPane().add("Center", new AnotherLinkButton("www.google.com"));
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.pack();
frame.setLocation(100, 100);
frame.setVisible(true);
}
始終發佈提供錯誤消息和完整消息的行。 – jzd 2011-03-01 14:13:46
抱歉..有線:frame.getContentPane()。add(「Center」,new AnotherLinkButton(「www.google.com」)); – steph22 2011-03-01 14:28:24