无法访问整个程序的jlabel

时间:2015-08-17 02:02:33

标签: java swing static jlabel private-members

我是Java新手,因此这个基本问题。

我在整个程序中访问字段(在这种情况下是jlabel)时遇到了麻烦。我的代码如下:

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

public class accessvariable {

    public static void main(String[] args) {

        //basic setup of display frame
        JFrame frame=new JFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setSize(400, 400);
        JPanel panel=new JPanel();

        //text field to take user input
        JTextField txt= new JTextField(10);

        //adding action listener for text field
        txt.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                if (true) { //if condition not checking anything here, just to make it enter the loop
                    JLabel j =new JLabel("Access successful"); //a jlabel created inside this 
                    System.out.println("inside j : "+j.getText()); //statement to check whether jlabel is accessible from here
                }
            }
        });

        System.out.println("outside j : "+j.getText()); //statement to check whether jlabel is accessible from here

        //basic setup for final display
        panel.add(txt);
        frame.getContentPane().add(panel);
        frame.setVisible(true);
    }
}

错误在这一行:

System.out.println("outside j : "+j.getText());

如果我注释掉这一行,它就可以了。内部j正确显示。但如果我不评论它,我会收到此错误:

Exception in thread "Exception in thread "main" java.lang.Error: Unresolved compilation problem: j cannot be resolved"

为了纠正这个问题,我把j变成了一个实例变量,如下所示:

private JLabel j; 

但是上面的内容会产生新的错误:

Cannot make a static reference to the non-static field j

我明白问题在于这一行:

System.out.println("outside j : "+j.getText());

如何修复上述问题,以便正确操作时,在文本字段中输入一些文本时的输出应如下所示:

inside j : Access successful
outside j : Access successful

2 个答案:

答案 0 :(得分:1)

等待。停止。重新开始。

你的程序只不过是一个静态的主方法,这对于#34; Hello World"键入程序,但如果您希望创建更强大的功能,您将需要,需要了解面向对象的概念以及如何在Java程序中应用它们。例如,对于此项目的开始,您应该创建至少一个具有非静态字段和方法的类,包括JLabel的字段(通过该字段,您将允许类的非静态方法访问此字段),你应该构建你的GUI,这意味着在main方法之外向容器添加组件,更像是在一些非静态init()方法或构造函数中。主要方法应该只是创建对象并将它们设置为动作而不是其他。但最重要的是,学习OOP概念以及它们与Java编程语言的关系。一本体面的书是Bruce Eckel's "Thinking in Java"

现在另一个难以理解的概念是范围,包括变量范围。如果你有一个变量,这里的JLabel变量j,不仅仅是在一个方法内部被埋没和声明,而是在一个隐藏在匿名内部ActionListener类中的方法中,对于其他类几乎是不可能的用于与此变量交互的代码。如果它是一个实例字段,则它在包含它的类的所有非静态部分中都是可见的。

例如:

import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;

@SuppressWarnings("serial")
public class AccessVariable extends JPanel {
    private static final int PREF_W = 400;
    private static final int PREF_H = PREF_W;
    private JLabel myLabel = new JLabel();
    private JTextField textField = new JTextField(10);

    public AccessVariable() {
        add(textField);
        add(myLabel);

        textField.addActionListener(new MyListener());
    }

    @Override
    public Dimension getPreferredSize() {
        if (isPreferredSizeSet()) {
            return super.getPreferredSize();
        }
        return new Dimension(PREF_W, PREF_H);
    }

    private class MyListener implements ActionListener {
        @Override
        public void actionPerformed(ActionEvent e) {
            String text = textField.getText();
            myLabel.setText("Text is: " + text);

            textField.requestFocusInWindow();
            textField.selectAll();
        }
    }

    private static void createAndShowGui() {
        AccessVariable mainPanel = new AccessVariable();

        JFrame frame = new JFrame("Access Variable");
        frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
        frame.getContentPane().add(mainPanel);
        frame.pack();
        frame.setLocationByPlatform(true);
        frame.setVisible(true);
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                createAndShowGui();
            }
        });
    }
}

答案 1 :(得分:0)

老兄,看看变量j的范围。 当你将j声明为私有成员变量时,它绝对无法直接从静态(主)方法访问。

最好在循环外声明它并再次检查代码执行