0
我遵守以下行爲(在Windows 7平臺上):搖擺的JComboBox怪異的行爲
import java.awt.*;
import javax.swing.*;
public class Main extends JFrame{
JPanel p;
JComboBox<String> l;
JLabel title;
public static void main(String[] arg){
Main m = new Main();
m.setVisible(true);
m.setSize(400,400);
m.p = new JPanel();
//m.l = new JComboBox<String>();
m.title = new JLabel("HELLO");
m.p.add(m.title);
m.setContentPane(m.p);
}
}
顯示HELLO
,但如果我取消對實例化JComboBox
行,它不會顯示任何內容。什麼可能導致?你能重現錯誤嗎?從我的評論
移動'm.setVisible(真);'在末端。 – 2011-12-22 10:35:25
對不起,我剛剛找到答案,我應該在JFrame上運行包,我已經忘記了;( – lc2817 2011-12-22 10:36:42
@HarryJoy它的工作,謝謝 – lc2817 2011-12-22 11:05:28