JFrame a = new JFrame();
a.setVisible(true);
a.setTitle("NUNU");
a.setSize(420,320);
a.setLocation(200,200);
a.setResizable(true);
a.setLayout(null);
//
JButton b = new JButton("正方形自动运算");
a.add(b);
b.setBounds(0, 0, 100, 26);
a.setVisible(true);
a.setLayout(null);这句话加上去之后才能使用setBounds进行定位
新建一个jpanel button放在jpanel中,将jpanel加入
加一句,a.setLayout(null);
a.setLayout(null);