[求助]不知道那里错了
import javax.swing.*;public class Weizhidaxiao extends JApplet
{
static JFrame f;
JPanel p;
JButton b;
public Weizhidaxiao()
{
p=new JPanel();
b=new JButton("button1");
p.setLayout(null);
b.setBounds(50,60,40,23);
p.add(b);
f.getContentPane().add(p);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.setResizable(false);
f.setVisible(true);
f.setSize(200,200);
}
public static void main(String args[])
{
Weizhidaxiao obj=new Weizhidaxiao();
}
}
[此贴子已经被作者于2006-3-23 16:40:07编辑过]