|

楼主 |
发表于 2020-11-7 09:30:09
|
显示全部楼层
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 abstract class 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);
}
}
|
|