为什么图中没有button与喵喵
public static void main(String[] args){
JFrame jframe=new JFrame();
jframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
jframe.setTitle("wancy GUI");
jframe.setLayout(null);
jframe.setBounds(0,0,400,400);
//jframe.getContentPane().setBackground(Color.CYAN);
JTextArea j=new JTextArea("喵喵");
jframe.add(j);
JButton b=new JButton("wancy");
jframe.add(b);
jframe.setVisible(true);
}