鱼C论坛

 找回密码
 立即注册
查看: 2920|回复: 2

刚学的事件监视器,不知哪错了=。=

[复制链接]
发表于 2019-4-5 10:51:24 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
public class tlp {
        public static void main(String args[]) {
                WindowActionEvent win=new WindowActionEvent();
                PoliceListen police=new PoliceListen();
                win.setMyCommandListener(police);
                win.setTitle("处理ActionEvent事件");
                win.setBounds(100,100,460,360);
                }
}
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class WindowActionEvent extends JFrame {
        JTextField inputText;
        JTextArea textShow;
        JButton button;
        MyCommandListener listener;
        public WindowActionEvent() {
                init();
                setVisible(true);
                setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        }
        void init() {
                setLayout(new FlowLayout());
                inputText=new JTextField(10);
                button=new JButton("确定");
                textShow=new JTextArea(9,30);
                add(inputText);
                add(button);
                add(new JScrollPane(textShow));
        }
        void setMyCommandListener(MyCommandListener listener) {
                this.listener=listener;
                listener.setJTextField(inputText);
                listener.setJTextArea(textShow);
                inputText.addActionListener(listener);
                button.addActionListener(listener);
        }
}
import javax.swing.*;
import java.awt.event.*;
public interface MyCommandListener extends ActionListener {
        public void setJTextField(JTextField text);
        public void 
        setJTextArea(JTextArea area);
        
}
import java.awt.event.*;
import javax.swing.*;

public class PoliceListen implements MyCommandListener {
        JTextField textInput;
        JTextArea showText;
        public void setJTextField(JTextField text) {
                textInput=text;
                
        }
        public void setTextArea(JTextArea area) {
                showText=area;
        }
        public void actionPerformed(ActionEvent e) {
                String str=textInput.getText();
                showText.append(str+"长度"+str.length()+"\n");
        }
}

用的是eclipse,PoliceListen类的“public class policeListen”的policeListen有红线》》
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-4-15 19:10:00 | 显示全部楼层
好像有匿名对象和内部类 以前我对这个很有研究 只是现在弄c++了 java的内部类的东西忘完了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-4-16 06:54:43 | 显示全部楼层
在那类中setTextArea,少了个J,导致MyCommandListener接口中的方法未实现。未细看,新手,错了轻喷。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-15 18:01

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表