Java多线程例子讲解
一:知识点声明:
1.区别进程和线程:进程是静态概念,它的执行依赖线程进行。
2.进程的状态:就绪(等待cpu执行),运行,中止,阻塞(等待所需资源,进入阻塞态)
3.Java程序的main函数即是一个线程,被称做主线程。此时如果新建线程,则和主线程一起并行运行。
4.Java中的构造方法、main函数谁先执行?
main函数先执行,因为main是静态方法,程序一开始就执行;而构造方法只有在类实例化时才去调用。
二:实例程序
public class GetCurrentThread implements Runnable { Thread th; public GetCurrentThread(String threadName) { th = new Thread(this,threadName); //<----DOUBT System.out.println("get threadname "+th.getName()); th.start(); } public void run() { System.out.println(th.getName()+" is starting....."); System.out.println("Current thread name : " + Thread.currentThread().getName()); } public static void main(String args[]) { System.out.println("Current thread name : " + Thread.currentThread().getName()); new GetCurrentThread("1st Thread"); //new GetCurrentThread("2nd Thread"); } }
四:程序分析过程(直接用笔记)
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。