panel显示不了
我在一个JFrame里面加了下个panel容器,为什么不能显示出来啊,我设了大小也看不到,用了setvisibe也不行,有谁能告诉我啊
这个我当然知道好不好,就是不行啊
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class Test extends JFrame implements ActionListener
{
JPanel panel=new JPanel();
Test()
{
Container con=getContentPane();
con.setLayout(new FlowLayout(FlowLayout.LEFT));
panel.setBackground(Color.white);
con.add(panel);
setSize(400,300);
setVisible(true);
}
public void actionPerformed(ActionEvent e)
{
}
public static void main(String[] args)
{
Test ap=new Test();
ap.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}