gzq44 发表于 2020-11-5 23:41:31

代码错误

问题如图,帮忙改正其错误{:10_247:}

乐乐学编程 发表于 2020-11-5 23:52:37

复制粘贴比发图片更难吗?

gzq44 发表于 2020-11-7 09:30:09

乐乐学编程 发表于 2020-11-5 23:52
复制粘贴比发图片更难吗?

package jsq;

public class jsq {

        public static void main(String[] args) {
                WindowActionEvent win = new WindowActionEvent();
                win.setTitle("处理ActionEvent事件");
                win.setBounds(100,100,310,260);
        }

}

import java.awt.event.*;

        public abstractclass ReaderListen implements ActionListener {
                public void actionPerforemed(ActionEvent e) {
                        String str = e.getActionCommand();
                        System.out.println(str+":"+str.length());
                }
               
        }

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

public class WindowActionEvent extends JFrame{
        JTextField text;
        ActionListener listener;
        public WindowActionEvent() {
                setLayout(new FlowLayout());
                text = new JTextField(10);
                add(text);
                listener = (ActionListener) new ReaderListen();
                text.addActionListener(listener);
                setVisible(true);
                setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
               
        }

}

不会起名字的我 发表于 2021-8-5 21:22:28

ReadListen类里的内部类重名了
页: [1]
查看完整版本: 代码错误