java中注册事件监听器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java中注册事件监听器相关的知识,希望对你有一定的参考价值。
lst1.addMouseListener(new MouseAdapter()代码块;)
的具体含义是???
与常见的lstq.addMouseListener(this);不同
MouseAdapter()是个 适配器 里面帮你实现了MouseListener()的所有方法
所以在这里你只要对你需要的事件重写就可以了,不用写你用不到的方法
lstq.addMouseListener(this); 其中的 this 是继承MouseListener类的 一个类 里面 实现了 MouseListener 类里的 所有方法,即使是空实现 你也 必须 写出来 这 就是 2者 的 区别~~
懂了么~ 参考技术A 作用是一样的,只是形式不同而已
使用lstq.addMouseListener(this);的话,
程序中必定会有一个public MouseAdapter()......方法.方法中有多个监听器。
this只是此方法中的某个监听器。
第一种情况
lst1.addMouseListener(new MouseAdapter()代码块;)
是为lst1添加了特定的一个的事件监听器,而不必另外再去写个public MouseAdapter()方法。 参考技术B AWT中提供的两种事件监听处理方法
1、通过实现XXXListener接口
2、通过继承XXXAdapter类
适配器(adapter)是实现XXXListener接口的抽象类。
2、通过adapter类来实现监听可以缩短程序代码,直接通过继承/内部类来实现处理方法。
3、但当需要多种监听器或该类已经有父类的时候,就不能通过适配器来实现事件监听。
java事务实例--处理按钮点击事件
AWT事件处理机制概要(来自白书):
1.事件监听器是一个实现了监听器接口的类实例。
2.事件源对象能够注册监听器并向其发送事件对象。
3.当事件发生时事件源将事件对象发送给所有注册的监听器。
4.监听器对象再使用事件对象中的信息决定如何对事件做出响应。
现在来看一个具体案例,当用户点击按钮,JButton对象创建一个ActionEvent对象,再调用Listener.actionPerformed(event)。
简单来说就是: 点即按钮->调用该按钮所有监听器的actionPerformed方法。
下面就是一个点击相应颜色按钮将面板调整为对应颜色的事件。
package Frame;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class ButtonFrame extends JFrame {
private JPanel buttonPanel;
private static final int DEFAULT_WIDTH=300;
private static final int DEFAULT_HEIGHT=200;
public static void main(String[] args)
{
EventQueue.invokeLater(()->
{
var button=new ButtonFrame();
button.setVisible(true);
button.setTitle("button");
});
}
public ButtonFrame()
{
setSize(DEFAULT_WIDTH,DEFAULT_HEIGHT);
var yellowButton=new JButton("Yellow");
var greenButton=new JButton("Green");
var blueButton=new JButton("Blue");
var redButton = new JButton("Red");
buttonPanel = new JPanel();
buttonPanel.add(yellowButton);
buttonPanel.add(blueButton);
buttonPanel.add(redButton);
buttonPanel.add(greenButton);
add(buttonPanel);
var yellowAction=new ColorAction(Color.YELLOW);
var greenAction=new ColorAction(Color.GREEN);
var redAction=new ColorAction(Color.RED);
var blueAction=new ColorAction(Color.BLUE);
yellowButton.addActionListener(yellowAction);
blueButton.addActionListener(blueAction);
redButton.addActionListener(redAction);
greenButton.addActionListener(greenAction);
}
private class ColorAction implements ActionListener {//为了使ColorAction对象访问buttonPanel对象,使用了内部类实现
private Color backgroundColor;
public ColorAction(Color c)
{
backgroundColor=c;
}
public void actionPerformed(ActionEvent event)
{
buttonPanel.setBackground(backgroundColor);
}
}
}
以上是关于java中注册事件监听器的主要内容,如果未能解决你的问题,请参考以下文章
Java学习笔记7.2.1 事件处理 - Swing事件处理机制