1.首先创建一个按钮,使用按钮中的方法创建一个鼠标点击事件
JButton jtb=new JButton("点我啊");
jtb.setBounds(0,0,100,50);
//添加鼠标点击事件
jtb.addActionListener()
第一种方法
addActionListener是一个interface,所以我们要写一个implements,第一种方法,单开一个类作为implement.
public class MyActionListener implements ActionListener {@Overridepublic void actionPerformed(ActionEvent e) {System.out.println("按钮被点击了");}
}
用于书写事件.
第二种方法
匿名implements
//直接new一个对应的implements
jtb.addActionListener(new ActionListener() {@Overridepublic void actionPerformed(ActionEvent e) {System.out.println("快点我");}
});
第三种方法
在类里面实现一个implements
//implements ActionListener这里
public class MyJFrame extends JFrame implements ActionListener {//下面是界面的创建不用管JButton jtb1=new JButton("点我啊");JButton jtb2=new JButton("点我啊");boolean i=false;public MyJFrame(){this.setSize(488,500);this.setTitle("拼图单机测试");//一直置顶,可有可不有this.setAlwaysOnTop(true);//设置界面居中this.setLocationRelativeTo(null);//设置默认的关闭模式this.setDefaultCloseOperation(3);this.setLayout(null);jtb1.setBounds(0,0,100,50);jtb2.setBounds(100,0,100,50);jtb1.addActionListener(this);jtb2.addActionListener(this);this.getContentPane().add(jtb1);this.getContentPane().add(jtb2);this.setVisible(true);}//代码在这里!!!@Overridepublic void actionPerformed(ActionEvent e) {Object source =e.getSource();if(source==jtb1){jtb1.setSize((i?200:50),(i?200:50));if(i)i=false;else i=true;}else if(source==jtb2){Random r=new Random();jtb2.setLocation(r.nextInt(500),r.nextInt(500));}}
}
然后再定义一个创建一个成员
public class test4 {public static void main(String[] args) {new MyJFrame();}
}