局部变量在内部类(java)中访问

2022-09-02 21:25:57

编译代码后,我遇到了两个错误。

错误是:

1.

  local variable input is accessed within inner class; 
  needs to be declared final
     String name = input.getText();

2.

  local variable c_age is accessed within inner class; 
  needs to be declared final
     Object child_age = c_age.getSelectedItem();

这是我的代码:

import javax.swing.*;
import java.awt.event.*;

public class GUI
{
    public static void main(String[] args)
    {
        JFrame frame = new JFrame("Try GUI");
        JLabel l1 = new JLabel("Please Enter Your Child's Name");
        JTextField input = new JTextField("",10);

        JLabel l2 = new JLabel("Choose Your Child's Age");
        String[] age = {"Age","1","2","3","4","5","6"};
        JComboBox c_age = new JComboBox(age);

        JButton button = new JButton("Search");

        JTextArea result = new JTextArea();
        JScrollPane extend_area = new JScrollPane(result);

        button.addActionListener(new ActionListener()
        {
            public void actionPerformed(ActionEvent ae)
            {
                String name = input.getText();
                Object child_age = c_age.getSelectedItem();
            }
        });

        JPanel panel = new JPanel();
        panel.add(l1);
        panel.add(input);
        panel.add(l2);
        panel.add(c_age);
        panel.add(button);
        panel.add(extend_area);
        frame.add(panel);
        frame.setSize(350,350);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setVisible(true);
    }

}

如何解决此错误?


答案 1

您需要声明

JTextField input = new JTextField("",10);

JComboBox c_age = new JComboBox(age);

喜欢这个:

final JTextField input = new JTextField("",10);

final JComboBox c_age = new JComboBox(age);

这意味着 并且不能更改:inputc_age

任何在内部类中使用但未声明的局部变量都必须在内部类的主体之前明确赋值。

解释摘自 Java 语言规范,第 8.1.3 节 内部类和封闭实例


答案 2

如果您将变量声明为最终变量,那么它将解决您的错误,但据我所知,它不是解决问题的好方法。类似的问题已经在这里讨论过,你可以看看这里有更多的理解。

在解决您的问题时,您可以使用它们来定义方法,您可以获得更好的解决方案。有关提示,您可以阅读如何访问匿名内部类中的非最终局部变量


推荐