更新时间:2019年07月26日 10时47分21秒 来源:黑马程序员论坛
1 并发编程介绍 一个Java程序运行在一个进程中,有时希望一个程序可以同时做多件事情,那么如果只有一个运算单元就明显不够,所以这时需要启动多个运算单元,这就是多线程。 多个线程的执行其实是抢占CPU的时间,但是感觉上好像在同时进行一样。 2 并发编程实战 为了使用多线程实现并发编程,我们可以提供如下三种做法。 a)Runnable任务 public class MyRunnable implements Runnable{ private int start; private int end; public MyRunnable(int start,int end){ this.start = start; this.end = end; } @Override public void run() { int sum = 0; for(int i=start;i<=end;i++){ sum+=i; } System.out.println(Thread.currentThread().getName()+"计算"+start+"到"+end+"的和为:"+sum); } } public class Test { public static void main(String[] args) { MyRunnable myRunnable = new MyRunnable(1,100); Thread thread1 = new Thread(myRunnable); thread1.start(); Thread thread2 = new Thread(myRunnable); thread2.start(); } } 特点:比较灵活,可以同时继承父类,也可以实现多个接口,需要创建任务对象,创建线程对象,线程对象不可重用。 b)自定义Thread public class MyThread extends Thread{ private int start; private int end; public MyThread(int start,int end){ this.start = start; this.end = end; } @Override public void run() { int sum = 0; for(int i=start;i<=end;i++){ sum+=i; } System.out.println(Thread.currentThread().getName()+"计算"+start+"到"+end+"的和为:"+sum); } } public class Test { public static void main(String[] args) { MyThread myThread1 = new MyThread(1,100); myThread1.start(); MyThread myThread2 = new MyThread(1,100); myThread2.start(); } } 特点:比较简单,不能再继承父类了,但可以实现多个接口,需要创建线程对象,线程对象不可重用。 c)线程池 public class MyRunnable implements Runnable{ private int start; private int end; public MyRunnable(int start,int end){ this.start = start; this.end = end; } @Override public void run() { int sum = 0; for(int i=start;i<=end;i++){ sum+=i; } System.out.println(Thread.currentThread().getName()+"计算"+start+"到"+end+"的和为:"+sum); } } public class Test { public static void main(String[] args) { MyRunnable myRunnable1 = new MyRunnable(1,100); MyRunnable myRunnable2 = new MyRunnable(1,100); ExecutorService threadPool = Executors.newFixedThreadPool(2); threadPool.submit(myRunnable1); threadPool.submit(myRunnable2); threadPool.shutdown(); } } 特点:不需要创建线程对象,线程对象不可重用,提高程序运行效率,推荐使用。 |
推荐了解热门学科
java培训 | Python人工智能 | Web前端培训 | PHP培训 |
区块链培训 | 影视制作培训 | C++培训 | 产品经理培训 |
UI设计培训 | 新媒体培训 | 产品经理培训 | Linux运维 |
大数据培训 | 智能机器人软件开发 |
传智播客是一家致力于培养高素质软件开发人才的科技公司,“黑马程序员”是传智播客旗下高端IT教育品牌。自“黑马程序员”成立以来,教学研发团队一直致力于打造精品课程资源,不断在产、学、研3个层面创新自己的执教理念与教学方针,并集中“黑马程序员”的优势力量,针对性地出版了计算机系列教材50多册,制作教学视频数+套,发表各类技术文章数百篇。
传智播客从未停止思考
传智播客副总裁毕向东在2019IT培训行业变革大会提到,“传智播客意识到企业的用人需求已经从初级程序员升级到中高级程序员,具备多领域、多行业项目经验的人才成为企业用人的首选。”
中级程序员和初级程序员的差别在哪里?
项目经验。毕向东表示,“中级程序员和初级程序员最大的差别在于中级程序员比初级程序员多了三四年的工作经验,从而多出了更多的项目经验。“为此,传智播客研究院引进曾在知名IT企业如阿里、IBM就职的高级技术专家,集中研发面向中高级程序员的课程,用以满足企业用人需求,尽快补全IT行业所需的人才缺口。
何为中高级程序员课程?
传智播客进行了定义。中高级程序员课程,是在当前主流的初级程序员课程的基础上,增加多领域多行业的含金量项目,从技术的广度和深度上进行拓展。“我们希望用5年的时间,打造上百个高含金量的项目,覆盖主流的32个行业。”传智播客课程研发总监于洋表示。
黑马程序员热门视频教程【点击播放】
Python入门教程完整版(懂中文就能学会) | 零起点打开Java世界的大门 |
C++| 匠心之作 从0到1入门学编程 | PHP|零基础入门开发者编程核心技术 |
Web前端入门教程_Web前端html+css+JavaScript | 软件测试入门到精通 |