利用Runnable 接口实现多线程,编写一个Java小程序。在屏幕上显示时间,每隔一秒钟刷新一次。为使小程序不
利用Runnable接口实现多线程,编写一个Java小程序。在屏幕上显示时间,每隔一秒钟刷新一次。为使小程序不影响其他程序的运行,使用了多线程。...
利用Runnable 接口实现多线程,编写一个Java小程序。在屏幕上显示时间,每隔一秒钟刷新一次。为使小程序不影响其他程序的运行,使用了多线程。
展开
1个回答
展开全部
import javax.swing.JLabel;
import java.util.Date;
public class Time extends JFrame implements Runnable {
private JLabel timeLabel=null;
private Date d=null;
public static void main(String args[]) {
new Time():
}
public Time() {
this.setTitle("多线程");
this.setSize(400,300):
this.setVisible(true);
this.setDefaultOperationClose(JFrame.EXIT_ON_CLOSE);
timeLabel=new JLabel();
this.getContentPane.add(timeLabel,BorderLayout.NORTH);
Thread t=new Thread(this);
t.start();
}
public void run() {
while (true) {
d=new Date();
timeLabel.setText(d.toString());
}
}
}
import java.util.Date;
public class Time extends JFrame implements Runnable {
private JLabel timeLabel=null;
private Date d=null;
public static void main(String args[]) {
new Time():
}
public Time() {
this.setTitle("多线程");
this.setSize(400,300):
this.setVisible(true);
this.setDefaultOperationClose(JFrame.EXIT_ON_CLOSE);
timeLabel=new JLabel();
this.getContentPane.add(timeLabel,BorderLayout.NORTH);
Thread t=new Thread(this);
t.start();
}
public void run() {
while (true) {
d=new Date();
timeLabel.setText(d.toString());
}
}
}
追问
嗯 加点注释吧
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询