public class Pic extends JFrame { private JButton b1 = new JButton("button1"), b2 = new JButton("button2"), b3 = new JButton("button3"), b4 = new JButton("button4"), b6 = new JButton("button6"), b5 = new JButton("button5"); private Panel panel1 = new Panel(); private JPanel panel2 = new JPanel();
public Pic() { this.setTitle("图像处理"); this.setSize(900, 700); this.setVisible(true); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);