TimeCount.java
上传用户:penghbff
上传日期:2007-04-16
资源大小:32k
文件大小:1k
源码类别:

射击游戏

开发平台:

Java

  1. import java.awt.*;
  2. import javax.swing.*;
  3. public class TimeCount extends Thread
  4. {
  5.   JTextField textShowTime;
  6.   int i=0;
  7.   public TimeCount()
  8.   {
  9.     textShowTime=new JTextField(5);
  10.     textShowTime.setEditable(false);
  11.     textShowTime.setFont(new Font("Plaint",Font.BOLD,24)); 
  12.     textShowTime.setHorizontalAlignment(JTextField.RIGHT);
  13.   }
  14.   public void run()
  15.   { i=0;
  16.     while(i<=999)
  17.     {
  18.       textShowTime.setText(""+i);
  19.       i++;
  20.       try{
  21.          sleep(1000);
  22.        }
  23.       catch(InterruptedException e){
  24.          break;
  25.        }
  26.     }
  27.   } 
  28. }