java怎样设计一个数字秒表? 100

功能:启动计时、暂停、继续、停止等功能... 功能:启动计时、暂停、继续、停止等功能 展开
 我来答
坦率又恬然的行家9
2015-04-29 · TA获得超过137个赞
知道小有建树答主
回答量:140
采纳率:0%
帮助的人:91.3万
展开全部
思路:
1.声明变量:【开始时间】,【结束时间】,【总时间】。都声明成long类型。
2.建立四个按钮,【开始】【暂停】【继续】【停止】

3.【开始】绑定方法:把系统当前时间赋值给【开始时间】=System.currentTimeMillis();
4.【暂停】绑定方法:把系统当前时间赋值给【结束时间】=System.currentTimeMillis();
然后【结束时间】减去【开始时间】的值赋给【总时间】并显示出来。
5.【继续】绑定方法:把系统当前时间赋值给【开始时间】=System.currentTimeMillis();
6.【停止】绑定方法:把系统当前时间赋值给【结束时间】=System.currentTimeMillis();
然后【结束时间】减去【开始时间】的值赋给【总时间】并显示出来。
追问
具体操作呢?
追答
那就看你的代码功底了
15114501641
2015-04-29 · 超过27用户采纳过TA的回答
知道答主
回答量:44
采纳率:0%
帮助的人:32.9万
展开全部
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.text.DecimalFormat;
import java.text.NumberFormat;
import javax.swing.JApplet;
import javax.swing.JButton;
import javax.swing.JLabel;
public class TimerApplet extends JApplet implements ActionListener{
private JLabel lblTime=new JLabel("时间");
private JButton btnStart=new JButton("开始");
private JButton btnEnd=new JButton("结束");
private long startTime=System.currentTimeMillis();
private boolean isRun=false;
private NumberFormat numberFormat=new DecimalFormat("0.000");
public TimerApplet(){
this.setLayout(new FlowLayout());
this.add(lblTime);
this.add(btnStart);
this.add(btnEnd);
btnStart.addActionListener(this);
btnEnd.addActionListener(this);
}
public void actionPerformed(ActionEvent e) {
if(e.getSource()==btnStart){
class TimerThread implements Runnable{
public void run() {
isRun=true;
startTime=System.currentTimeMillis();
while(isRun){
try {
Thread.sleep(100);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
double time=(System.currentTimeMillis()-startTime);
lblTime.setText(numberFormat.format(time/1000));
}
}
}
new Thread(new TimerThread()).start();
}
if(e.getSource()==btnEnd){
isRun=false;
}
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式