java面向对象实现时钟,给定时间后 每秒连续不断输出时间
要求:
给定时间 后 ,就每秒 持续不断输出 时间
格式为 :例: 23 : 45 : 58
Clock 类
用来实现 时针,分针,秒针
/**
* @author 亮23
* @version 2021.7.23
*/
public class Clock extends Thread {
private int size; // 计量尺度 分针60,时针24,秒针60
private int time; // 当前时间
public Clock(int size) {
this.size = size;
}
public int getSize() {
// 获取 计量尺度
return size;
}
public void setSize(int size) {
// 设置 计量尺度
this.size = size;
}
public int getTime() {
// 获取 当前时间
return time;
}
public void setTime(int time) {
// 设置 当前 时间
this.time = time;
}