爱学习的东方人 2015-06-21 13:38 采纳率: 50%
浏览 1512
已采纳

java文字时钟运行问题

package texttime;
import java.applet.*;
import java.util.*;
import java.awt.*;

/**
*

  • @author Administrator
    */
    public class TextTime extends Applet implements Runnable {
    Thread th=null;
    TextField tt=new TextField(30);
    public void init(){
    add(tt);
    }
    public void start(){
    if(th==null){
    th=new Thread(this);
    th.start();
    }
    }
    public void stop(){
    if(th!=null){
    th.stop();
    th=null;
    }
    }
    public void run(){
    while(true){
    Date dd=new Date();
    tt.setText(dd.toGMTString());
    try{
    Thread.sleep(1000);
    }catch(InterruptedException e){
    }
    }
    }

    /**

    • @param args the command line arguments */ public static void main(String[] args) { // TODO code application logic here

    }

}

  • 写回答

3条回答 默认 最新

  • danielinbiti 2015-06-21 13:52
    关注
     @param args the command line arguments */ public static void main(String[] args) { // TODO code application logic here
          TextTime tt = new TextTime();
             tt.start();
    }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作