0
這是我的代碼,當我運行這個例子時,它給出NullPointerException
你能幫我找到錯誤或爲什麼我有這個異常! 我的代碼:爲什麼我得到NullPointerException
public class Frame extends JFrame
{
public Frame()
{
JLabel label;
label.setText("test");
add(label);
setSize(200,200);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public static void main(String[] args)
{
new Frame().setVisible(true);
}
}
你能提供堆棧跟蹤嗎? – 2015-01-04 12:57:10
另請參閱http://stackoverflow.com/questions/3988788/what-is-a-stack-trace-and-how-can-i-use-it-to-debug-my-application-errors – 2015-01-04 12:58:08
JLabel label =新的JLabel(); label.setText( 「測試」); – Xcihnegn 2015-01-04 12:59:27