/*设计一个鼠标点击速度比赛游戏。
*(1)显示一个按钮和文本框。
*(2)文本框显示鼠标点击次数
**/
import javax.swing.*;//引用
import java.awt.*;
import java.awt.event.*;
public class SBBS extends JFrame implements ActionListener {
JTextField ab;//定义全局变量
int a;
SBBS (){
JFrame jf = new JFrame("鼠标点击速度大比拼");
jf.setVisible(true);
jf.setSize(400, 600);//设置窗口初显大小
jf.setLocationRelativeTo(null);
JLabel La=new JLabel("点击次数");//标签
ab= new JTextField(25);// 文本框
JButton b1= new JButton("请连续点击");//按钮
b1.addActionListener(this);
jf.add(La);//将组件添加到面板
jf.add(ab);
jf.add(b1);
jf.setLayout(new FlowLayout());
}
public void actionPerformed(ActionEvent e){
String s = e.getActionCommand() ;
if(s.equals("请连续点击"))
ab.setText(""+a++);
}
public static void main(String[] args) {
new SBBS() ;
}
}
*(1)显示一个按钮和文本框。
*(2)文本框显示鼠标点击次数
**/
import javax.swing.*;//引用
import java.awt.*;
import java.awt.event.*;
public class SBBS extends JFrame implements ActionListener {
JTextField ab;//定义全局变量
int a;
SBBS (){
JFrame jf = new JFrame("鼠标点击速度大比拼");
jf.setVisible(true);
jf.setSize(400, 600);//设置窗口初显大小
jf.setLocationRelativeTo(null);
JLabel La=new JLabel("点击次数");//标签
ab= new JTextField(25);// 文本框
JButton b1= new JButton("请连续点击");//按钮
b1.addActionListener(this);
jf.add(La);//将组件添加到面板
jf.add(ab);
jf.add(b1);
jf.setLayout(new FlowLayout());
}
public void actionPerformed(ActionEvent e){
String s = e.getActionCommand() ;
if(s.equals("请连续点击"))
ab.setText(""+a++);
}
public static void main(String[] args) {
new SBBS() ;
}
}