守护线程和生产者、消费者模式
/*
所有的用户线程结束,守护线程自动结束
守护守护的意思是:用户线程在,你有必要守护。用户线程没了,你就没必要守护了。
*/
public class 线程守护 {
public static void main(string[] args) {
thread t = new mm();
//启动线程前,将线程设置为守护线程
t.setdaemon(true);
t.start();
//主线程 :主线程是用户线程
for (int i = 0; i < 10; i) {
system.out.println(thread.currentthread().getname() "-->"i);
try {
thread.sleep(1000);
} catch (interruptedexception e) {
e.printstacktrace();
}
}
}
}
class mm extends thread{
@override
public void run() {
int i = 0 ;
//即使是死循环,但由于该线程是守护线程,当用户线程结束,守护线程自动终止。
while (true){
system.out.println(thread.currentthread().getname() "-->"(i));
try {
thread.sleep(1000);
} catch (interruptedexception e) {
e.printstacktrace();
}
}
}
}
/*
使用定时器指定任务
*/
public class 定时器 {
public static void main(string[] args) throws exception {
// 创建定时器对象
timer timer = new timer();
//timer timer = new timer(true); 守护线程方式
simpledateformat sdf = new simpledateformat("yyyy-mm-dd hh:mm:ss");
date parse = sdf.parse("2022-9-19 11:52:30");
//timer.schedule(定时任务,第一次执行时间,间隔多久执行一次);
timer.schedule(new logtimertask(),parse,1000*5); //也可以使用匿名内部类,直接new抽象类
}
}
class logtimertask extends timertask{ //子类继承抽象类,要重写抽象方法
@override
public void run() {
//编写需要执行的任务
simpledateformat sdf = new simpledateformat("yyyy-mm-dd hh:mm:ss");
string format = sdf.format(new date());
system.out.println(format ": 成功完成一次数据备份");
}
}
请后发表内容