1
 b1.addActionListener(this);

在这个语句中''关键字的用途是什么?this通过' this'关键字传递什么引用?如果可能,请举例说明。

4

2 回答 2

2

“this”表示这个对象,如果你写这个语句就意味着你的类实现了ActionListener

例如 :

    import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.*;

class test extends JFrame implements ActionListener {
    JButton someButton;


    test() {
        // create the button
        someButton = new JButton();
        // add it to the frame
        this.add(someButton);
        // adding this class as a listener to the button, if button is pressed 
        // actionPerformed function of this class will be called and an event 
        // will be sent to it 
        someButton.addActionListener(this);
    }   
    public static void main(String args[]) {
        test c = new test();
        c.setDefaultCloseOperation(EXIT_ON_CLOSE);
        c.setSize(300, 300);
        c.setVisible(true);
        c.setResizable(false);
        c.setLocationRelativeTo(null);
    }

    public void actionPerformed(ActionEvent e) {

        if(e.getSource() == someButton)
        {
            JOptionPane.showMessageDialog(null, "you pressed somebutton");
        }
    }
};
于 2013-07-13T06:18:31.407 回答
2

this指的是对象的当前实例。

说你的班级A实现了ActionListener. 然后从你的类中,如果你添加监听器,那么你可以使用它,因为继承规则你的类也是一个监听器。

class A implements ActionListener{
    Button b;
    A(){
         b1 = new Button();
         b1.addActionListener(this);
    }
}

这里使用 this 是因为 currentobject 也是一个动作监听器

于 2013-07-13T06:26:38.677 回答