简单了解Java编程中线程的创建与守护线程
线程的两种创建方式及优劣比较
1、通过实现runnable接口线程创建
(1).定义一个类实现runnable接口,重写接口中的run()方法。在run()方法中加入具体的任务代码或处理逻辑。
(2).创建runnable接口实现类的对象。
(3).创建一个thread类的对象,需要封装前面runnable接口实现类的对象。(接口可以实现多继承)
(4).调用thread对象的start()方法,启动线程
示例代码:
package demo.thread; public class treaddemo1 implements runnable { private int countdown = 10; @override // 在run方法中定义任务 public void run() { while (countdown-- > 0) { system.out.println("#" + thread.currentthread().getname() + "(" + countdown + ")"); } } public static void main(string[] args) { // runnable中run方法是一个空方法,并不会产生任何线程行为,必须显式地将一个任务附着到线程上 treaddemo1 tt=new treaddemo1(); new thread(tt).start(); new thread(tt).start(); system.out.println("火箭发射前倒计时:"); } }
运行结果:
火箭发射前倒计时:
#thread-1(8) #thread-1(7) #thread-1(6) #thread-1(5) #thread-1(4) #thread-1(3) #thread-1(2) #thread-1(1) #thread-1(0) #thread-0(9)
2、通过继承thread类创建线程
(1).首先定义一个类去继承thread父类,重写父类中的run()方法。在run()方法中加入具体的任务代码或处理逻辑。
(2).直接创建一个threaddemo2类的对象,也可以利用多态性,变量声明为父类的类型。
(3).调用start方法,线程t启动,隐含的调用run()方法。
示例代码:
package demo.thread; public class threaddemo2 extends thread { private int countdown = 10; @override // 在run方法中定义任务 public void run() { while (countdown-- > 0) { system.out.println("#" + this.getname() + "(" + countdown + ")"); } } public static void main(string[] args) { new threaddemo2().start(); new threaddemo2().start(); // 由于start方法迅速返回,所以main线程可以执行其他的操作,此时有两个独立的线程在并发运行 system.out.println("火箭发射前倒计时:"); } }
运行结果:
#thread-0(9) #thread-0(8) #thread-0(7) #thread-0(6) #thread-0(5) #thread-0(4) #thread-0(3) #thread-0(2) #thread-0(1) #thread-0(0)
火箭发射前倒计时:
#thread-1(9) #thread-1(8) #thread-1(7) #thread-1(6) #thread-1(5) #thread-1(4) #thread-1(3) #thread-1(2) #thread-1(1) #thread-1(0)
3、两种方式的比较
首先分析两种方式的输出结果,同样是创建了两个线程,为什么结果不一样呢?
使用实现runnable接口方式创建线程可以共享同一个目标对象 (treaddemo1 tt=new treaddemo1();),实现了多个相同线程处理同一份资源。
然后再看一段来自jdk的解释:
runnable 接口应该由那些打算通过某一线程执行其实例的类来实现。类必须定义一个称为run 的无参数方法。
设计该接口的目的是为希望在活动时执行代码的对象提供一个公共协议。例如,thread 类实现了runnable 。激活的意思是说某个线程已启动并且尚未停止。
此外,runnable 为非 thread 子类的类提供了一种激活方式。通过实例化某个thread 实例并将自身作为运行目标,就可以运行实现 runnable 的类而无需创建 thread 的子类。大多数情况下,如果只想重写run() 方法,而不重写其他 thread 方法,那么应使用 runnable 接口。这很重要,因为除非程序员打算修改或增强类的基本行为,否则不应为该类创建子类。
采用继承thread类方式:
(1)优点:编写简单,如果需要访问当前线程,无需使用thread.currentthread()方法,直接使用this,即可获得当前线程。
(2)缺点:因为线程类已经继承了thread类,所以不能再继承其他的父类。
采用实现runnable接口方式:
(1)优点:线程类只是实现了runable接口,还可以继承其他的类。在这种方式下,可以多个线程共享同一个目标对象,所以非常适合多个相同线程来处理同一份资源的情况,从而可以将cpu代码和数据分开,形成清晰的模型,较好地体现了面向对象的思想。
(2)缺点:编程稍微复杂,如果需要访问当前线程,必须使用thread.currentthread()方法。
后台线程(守护线程)
所谓的后台线程,是指在程序运行的时候在后台提供一种通用服务的线程,并且这种线程并不属于程序中不可或缺的部分。因此当所有的非后台线程结束时,程序也就终止了,同时会杀死所有后台线程。反过来说,只要有任何非后台线程(用户线程)还在运行,程序就不会终止。后台线程在不执行finally子句的情况下就会终止其run方法。后台线程创建的子线程也是后台线程。 下面是一个后台线程的示例:
package demo.thread; import java.util.concurrent.timeunit; public class daemondemo implements runnable { @override public void run() { try { while (true) { thread.sleep(1000); system.out.println("#" + thread.currentthread().getname()); } } catch (interruptedexception e) { e.printstacktrace(); } finally {// 后台线程不执行finally子句 system.out.println("finally "); } } public static void main(string[] args) { for (int i = 0; i < 10; i++) { thread daemon = new thread(new daemondemo()); // 必须在start之前设置为后台线程 daemon.setdaemon(true); daemon.start(); } system.out.println("all daemons started"); try { timeunit.milliseconds.sleep(1000); } catch (interruptedexception e) { // todo auto-generated catch block e.printstacktrace(); } } }
运行结果:
all daemons started #thread-2 #thread-3 #thread-1 #thread-0 #thread-9 #thread-6 #thread-8 #thread-5 #thread-7 #thread-4
分析:从结果可以看出,十个子线程并没有无线循环的打印,而是在主线程(main())退出后,jvm强制关闭所有后台线程。而不会有任何希望出现的确认形式,如finally子句不执行。