Button 通过按钮更改文本字段中的文本

Button 通过按钮更改文本字段中的文本,button,textfield,actionlistener,Button,Textfield,Actionlistener,我有一个空指针错误。我试着用System.out.print打印按钮,效果很好。我真的不知道怎么了。这也是我的第一篇帖子,所以对于任何错误,我深表歉意。代码如下: import javax.swing.JFrame; import javax.swing.JButton; import javax.swing.JTextField; import java.awt.event.ActionListener; import java.awt.event.ActionEvent; import ja

我有一个空指针错误。我试着用System.out.print打印按钮,效果很好。我真的不知道怎么了。这也是我的第一篇帖子,所以对于任何错误,我深表歉意。代码如下:

import javax.swing.JFrame;
import javax.swing.JButton;
import javax.swing.JTextField;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import java.awt.FlowLayout;
import java.awt.Container;

class ChangeText implements ActionListener{
    JButton button;
    JTextField tfield;
    public ChangeText(){
        JFrame frame = new JFrame();

        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setTitle("Change Text");
        frame.setLayout(new FlowLayout());


        JTextField tfield = new JTextField("old text");
        JButton button = new JButton("Change Text");
        button.addActionListener(this);

        frame.add(tfield);
        frame.add(button);

        frame.pack();
        frame.setVisible(true);
    }

    public static void main(String[] args){
        ChangeText ct = new ChangeText();
    }


    public void actionPerformed(ActionEvent e){
        tfield.setText(null);
    }


}
编辑:这是我按下按钮时得到的结果

java.lang.NullPointerException
    at ChangeText.actionPerformed(ChangeText.java:42)
    at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
    at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
    at java.awt.Component.processMouseEvent(Unknown Source)
    at javax.swing.JComponent.processMouseEvent(Unknown Source)
    at java.awt.Component.processEvent(Unknown Source)
    at java.awt.Container.processEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Window.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    at java.awt.EventQueue.access$000(Unknown Source)
    at java.awt.EventQueue$3.run(Unknown Source)
    at java.awt.EventQueue$3.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(Unknown Source)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(Unknown Source)
    at java.awt.EventQueue$4.run(Unknown Source)
    at java.awt.EventQueue$4.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.run(Unknown Source)

此行正在创建JTextField的本地副本

JTextField tfield = new JTextField("old text");
成功

tfield = new JTextField("old text");

(这样您的tfield成员就被实例化了),一切都应该很好:)

空指针在哪里?显示stacktraceI编辑的帖子。谢谢我还不熟悉堆栈跟踪,所以我不确定这是否是您想要的。很抱歉