首页 > 代码库 > 监听器接口(三)
监听器接口(三)
// 通过接口实现监听器 public class ActionMonitor extends JFrame implements ActionListener{ 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);//位置和大小 button.addActionListener(this);//添加监听 this.add(button); } @Override public void actionPerformed(ActionEvent e) { // 监听动作 if(e.getSource()==button){ } } public static void main(String[] args) { ActionMonitor am= new ActionMonitor(); } }
监听器接口(三)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。