首页 > 代码库 > Java多线程例子讲解
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"); } }
四:程序分析过程(直接用笔记)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。