码迷,mamicode.com
首页 > 其他好文 > 详细

监听器内部类(二)

时间:2017-05-14 16:55:55      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:listener   实现   void   ati   bounds   string   npe   generate   blog   

//通过内部类实现监听器
public class ActionMonitor extends JFrame {
    JButton button;
    public ActionMonitor(){
        this.setLayout(null);//布局
        this.setSize(500,400);//大小
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);//设置可以关闭
        button =new JButton();
        button.setBounds(200, 200, 100, 20);//位置和大小
        ActionM am=new ActionM();
        button.addActionListener(am);//添加监听
        this.setVisible(true);
        this.add(button);
        //设置可见性
    }
    public static void main(String[] args) {
        ActionMonitor am= new ActionMonitor();
    }
    class ActionM implements ActionListener{


        @Override
        public void actionPerformed(ActionEvent e) {
            //TODO Auto-generated method stub

        }

    }
}

  

监听器内部类(二)

标签:listener   实现   void   ati   bounds   string   npe   generate   blog   

原文地址:http://www.cnblogs.com/test1234/p/6852849.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!