Java计时器(秒表)
功能:能实现计时,暂停,清零,记录功能。如下图:程序运行状态:
源代码:
import .*;
import .*;
import .*;
public class Test {
public static void main(String[] args){
new window("计时器");
}
}
class window extends JFrame{
int ON=0,i=0,j=0,k=0,count=0,num=1,R=0;
JButton button1,button2,button3,button4,button5;
JTextField file1,file2,file3;
JTextArea file;
FlowLayout flow;
String a,b,c;
window(String name)
{
file1=new JTextField(2);
file2=new JTextField(2);
file3=new JTextField(2);
(false);
(false);
(false);
file=new JTextArea(10,8);
(false);
button1=new JButton("开始");
button2=new JButton("暂停");
button3=new JButton("清零");
button4=new JButton("记录");
button5=new JButton("清空记录");
flow=new FlowLayout();
();
(20);
(10);
setTitle(name);
setSize(210,400);
setLayout(flow);
add(file1);
add(new JLabel(":"));
add(file2);
add(new JLabel(":"));
add(file3);
add(button1);
add(button2);
add(button3);
add(button4);
add(button5);
add(file);
setVisible(true);
setDefaultCloseOperation(EXIT_ON_CLOSE);
("0");
("0");
("0");
validate();
(new ActionListener() {
public void actionPerformed(ActionEvent e)
JAVA计时器(秒表)程序代码 来自淘豆网m.daumloan.com转载请标明出处.