我正在努力学习 Java。
public class MyFrame extends JFrame implements ActionListener{
JButton button;
JLabel label;
MyFrame(){
ImageIcon icon = new ImageIcon("point.png");
ImageIcon icon2 = new ImageIcon("face.png");
label = new JLabel();
label.setIcon(icon2);
label.setBounds(150, 250, 150, 150);
label.setVisible(false);
button = new JButton();
button.setBounds(100, 100, 250, 100);
button.addActionListener(this);
button.setText("I'm a button!");
在这个类中,我不知道在构造函数中声明按钮属性的意义。为什么我不能全局声明属性?