在Java程序设计语言中,并发程序主要集中于线程
而且随着计算机系统拥有多个处理器或带有多个执行内核,线程的系统能力得到了很大的增强
其中并发程序设计是指由若干个可在同一时间段执行的程序模块组成程序的程序设计方法。
这种可并发执行的程序模块称为进程 ,进程由数据和机器指令和堆栈组成,存储在磁盘的程序运行起来就是一个进程,进程在内存中,所以在一个操作系统中能开启的进程是有限的 。
线程
它是进程中的一个独立运行单位,是程序执行流的最小单位。
线程(Thread)是并发编程的基础,也是程序执行的最小单元,它依托进程而存在。一个进程中可以包含多个线程,多线程可以共享一块内存空间和一组系统资源,因此线程之间的切换更加节省资源、更加轻量化,也因此被称为轻量进程,
线程自己不拥有系统资源,只拥有在运行中必不可少的资源,一个线程可以创建和撤销另一个线程,同一个进程中多个线程之间可以并发执行。
由于线程之间的相互制约,可以说线程有暂停,等待,休眠,停止等状态,从你创建一个线程,到执行任务完毕,这是线程的一个生命周期。
线程工作模式 详述…
线程在CPU上执行 ,(CPU多少核多少线程,简单来说意味着在这台电脑上同一时间能执行多少个线程),线程执行需要消耗CPU(运行),高速缓存(缓存线程运行时所需的数据),内存(存储数据) ,CPU的读取速度是最快的,为达到最大效率,将数据提前提取到高速缓存中便于CPU在运行时能尽量体现其高速的特性。
多线程 线程是程序中一个单一的顺序控制流程,在耽搁程序中同时运行多个线程完成不同的工作,即为多线程。
引入线程是因为创建一个新线程花费时间少,两个线程(在同一进程中的)的切换时间少, 线程之间互相通信不必调用内核,线程能独立执行;
而使用多线程就是最大限度的利用硬件资源来提升程序的效率,(这也就是说在一个进程中不能开启N个线程,因为硬件资源会限制执行效率)。
Java实现多线程有两种方式
Runnable接口:此接口中有一个run()方法,是线程的运行方法(线程要执行的任务),当run结束时,线程也就结束了;
Thread类:(Thread类是Runnable接口的子类)所以run方法仍然保持,此外这个类中还有start( );和sleep(long time); start方法是线程的启动方法,如果想要JVM把你的这个类当作一个线程,就要使用start方法来启动线程,sleep是线程的休眠方法,单位是毫秒
新线程态(New Thread)
可运行态(Runnable)
非运行态(Not Runnable)
死亡态(Dead)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 public class Test { public int num; public Test (int num) { this .num = num; } public void print () { num++; System.out.println(Thread.currentThread()+" " +"num =" +num); } }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 public class ThreadTest extends Thread { public Test test; public ThreadTest (Test test) { this .test = test; } public void run () { while (test.num<20 ) { test.print(); try { Thread.sleep(2000 ); } catch (InterruptedException e) { e.printStackTrace(); } } } public static void main (String[] args) { Test tes = new Test(1 ); for (int i=0 ;i<=10 ;i++) { ThreadTest thr = new ThreadTest(tes); Thread t = new Thread(thr); t.start(); } System.out.println(Thread.currentThread()); } }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 Thread[Thread-1 ,5 ,main] num =2 Thread[Thread-13 ,5 ,main] num =3 Thread[Thread-9 ,5 ,main] num =4 Thread[Thread-11 ,5 ,main] num =5 Thread[main,5 ,main] Thread[Thread-7 ,5 ,main] num =6 Thread[Thread-3 ,5 ,main] num =7 Thread[Thread-5 ,5 ,main] num =8 Thread[Thread-21 ,5 ,main] num =9 Thread[Thread-19 ,5 ,main] num =10 Thread[Thread-15 ,5 ,main] num =11 Thread[Thread-17 ,5 ,main] num =12 Thread[Thread-7 ,5 ,main] num =13 Thread[Thread-5 ,5 ,main] num =14 Thread[Thread-15 ,5 ,main] num =15 Thread[Thread-11 ,5 ,main] num =16 Thread[Thread-13 ,5 ,main] num =17 Thread[Thread-1 ,5 ,main] num =18 Thread[Thread-21 ,5 ,main] num =19 Thread[Thread-19 ,5 ,main] num =20 Thread[Thread-17 ,5 ,main] num =21 Thread[Thread-3 ,5 ,main] num =22 Thread[Thread-9 ,5 ,main] num =23
出现了问题,下边就来解决:
共用代码块是我想到的第一种方法,代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 public class Test { public int num; public Test (int num) { this .num = num; } public synchronized void print () { num++; System.out.println(Thread.currentThread()+" " +"num =" +num); } }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 public class ThreadTest extends Thread { public Test test; public Object obj = new Object(); public ThreadTest (Test test) { this .test = test; } public void run () { synchronized (obj) { while (test.num<20 ) { test.print(); try { Thread.sleep(2000 ); } catch (InterruptedException e) { e.printStackTrace(); } } } } public static void main (String[] args) { Test tes = new Test(1 ); for (int i=0 ;i<=10 ;i++) { ThreadTest thr = new ThreadTest(tes); Thread t = new Thread(thr); t.start(); } System.out.println(Thread.currentThread()); } }
但貌似并没有起到预想的效果,再接再厉……
之后在实现界面上直线等的动画时再次见到了多线程,这次与之不同的是,我在网上查找到了多线程怎么控制并发数,有两种方法,第一种是用join方法,第二种则是利用线程池
过了好久终于解决了~~~~~
首先明白一个问题,创建一个线程的时间远远小于启动一个线程去运行的时间,所以应该将创建和启动线程分开写
1 2 3 4 5 6 7 8 for (int i=0 ;i<=10 ;i++) { ThreadTest thr = new ThreadTest(tes); list.add(thr); } for (ThreadTest tt : list) { tt.start(); }
第二点,自加时间足够短,加休眠有点多此一举了,所以run方法就只剩下了一行代码
最终的运行结构发现终于没有重复的值了
面对一个问题的时候,从问题的本质入手,简单代码上手,理解多线程同步是一个巨大的工程:
顺便列举一下了解到的多线程同步的七种方法吧
同步方法
同步代码块(此上两种方法都是涉及到synchronized关键字的)
wait与notify
使用特殊域变量(volatile)实现
重入锁()java.util.concurrennt包
使用局部变量
使用阻塞队列实现原子操作
补充:
线程状态
线程的状态在 JDK 1.5 之后以枚举的方式被定义在 Thread 的源码中,它总共包含以下 6 个状态:
NEW ,新建状态,线程被创建出来,但尚未启动时的线程状态;
RUNNABLE ,就绪状态,表示可以运行的线程状态,它可能正在运行,或者是在排队等待操作系统给它分配 CPU 资源;
BLOCKED ,阻塞等待锁的线程状态,表示处于阻塞状态的线程正在等待监视器锁,比如等待执行 synchronized 代码块或者使用 synchronized 标记的方法;
WAITING ,等待状态,一个处于等待状态的线程正在等待另一个线程执行某个特定的动作,比如,一个线程调用了Object.wait()方法,那它就在等待另一个线程调用Object.notify()…
TIMED_WAITING ,计时等待状态,和等待状态(WAITING)类似,它只是多了超时时间,比如调用了有超时时间设置的方法Object.wait(longtimeout)和Thread.j…
TERMINATED ,终止状态,表示线程已经执行完成。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 public enum State { NEW, RUNNABLE, BLOCKED, WAITING, TIMED_WAITING, TERMINATED }
返回…
线程的工作模式
首先先要创建线程并指定线程需要执行的业务方法,然后再调用线程的start()方法,
此时线程就从NEW(新建)状态变成了RUNNABLE(就绪)状态,
此时线程会判断要执行的方法中有没有 synchronized 同步代码块,
如果有并且其他线程也在使用此锁,那么线程就会变为 BLOCKED(阻塞等待)状态,
当其他线程使用完此锁之后,线程会继续执行剩余的方法。
当遇到Object.wait()或Thread.join()方法时,线程会变为WAITING(等待状态)状态,如果是带了超时时间的等待方法,那么线程会进入TIMED_WAITING(计时等待)状态,当有其他线程执行了 notify() 或 notifyAll() 方法之后,线程被唤醒继续执行剩余的业务方法,直到方法执行完成为止,此时整个线程的流程就执行完了。
面试 线程一般会作为并发编程的起始问题,用于引出更多的关于并发编程的面试问题。当然对于线程的掌握程度也决定了你对并发编程的掌握程度。
BLOCKED(阻塞等待)和 WAITING(等待)有什么区别?
start() 方法和 run() 方法有什么区别?
线程的优先级有什么用?该如何设置?
线程的常用方法有哪些?
BLOCKED 和 WAITING 的区别
虽然 BLOCKED 和 WAITING 都有等待的含义,但二者有着本质的区别。
首先它们状态形成的调用方法不同,
其次 BLOCKED 可以理解为当前线程还处于活跃状态,只是在阻塞等待其他线程使用完某个锁资源;
而 WAITING 则是因为自身调用了 Object.wait() 或着是 Thread.join() 又或者是 LockSupport.park() 而进入等待状态,只能等待其他线程执行某个特定的动作才能被继续唤醒。
For Example:
比如当线程因为调用了 Object.wait() 而进入 WAITING 状态之后,则需要等待另一个线程执行 Object.notify() 或 Object.notifyAll() 才能被唤醒。
start() 和 run() 的区别 首先从 Thread 源码来看,start() 方法属于 Thread 自身的方法,并且使用了 synchronized 来保证线程安全,源码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 public synchronized void start () { if (threadStatus != 0 ) throw new IllegalThreadStateException(); group.add(this ); boolean started = false ; try { start0(); started = true ; } finally { try { if (!started) { group.threadStartFailed(this ); } } catch (Throwable ignore) { } } }
run() 方法为 Runnable 的抽象方法,必须由调用类重写此方法,重写的 run() 方法其实就是此线程要执行的业务方法,源码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 public class Thread implements Runnable { private Runnable target; @Override public void run () { if (target != null ) { target.run(); } } } @FunctionalInterface public interface Runnable { public abstract void run () ; }
从执行的效果来说,
start() 方法可以开启多线程,让线程从 NEW 状态转换成 RUNNABLE 状态,而 run() 方法只是一个普通的方法。 其次,它们可调用的次数不同,start() 方法不能被多次调用,否则会抛出 java.lang.IllegalStateException;
而 run() 方法可以进行多次调用,因为它只是一个普通的方法而已。
线程优先级 在 Thread 源码中和线程优先级相关的属性有 3 个:
1 2 3 4 5 6 7 8 public final static int MIN_PRIORITY = 1 ;public final static int NORM_PRIORITY = 5 ;public final static int MAX_PRIORITY = 10
线程的优先级 可以理解为线程抢占 CPU 时间片的概率
优先级越高的线程优先执行的概率就越大,但并不能保证优先级高的线程一定先执行。
在程序中我们可以通过 Thread.setPriority() 来设置优先级,setPriority() 源码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 public final void setPriority (int newPriority) { ThreadGroup g; checkAccess(); if (newPriority > MAX_PRIORITY || newPriority < MIN_PRIORITY) { throw new IllegalArgumentException(); } if ((g = getThreadGroup()) != null ) { if (newPriority > g.getMaxPriority()) { newPriority = g.getMaxPriority(); } setPriority0(priority = newPriority); } }
线程的常用方法
join()
在一个线程中调用 other.join() ,这时候当前线程会让出执行权给 other 线程,直到 other 线程执行完或者过了超时时间之后再继续执行当前线程,
join() 源码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 public final synchronized void join (long millis) throws InterruptedException { long base = System.currentTimeMillis(); long now = 0 ; if (millis < 0 ) { throw new IllegalArgumentException("timeout value is negative" ); } if (millis == 0 ) { while (isAlive()) { wait(0 ); } } else { while (isAlive()) { long delay = millis - now; if (delay <= 0 ) { break ; } wait(delay); now = System.currentTimeMillis() - base; } } }
从源码中可以看出 join() 方法底层还是通过 wait() 方法来实现的。
例如,在未使用 join() 时,代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 public class ThreadExample { public static void main (String[] args) throws InterruptedException { Thread thread = new Thread(() -> { for (int i = 1 ; i < 6 ; i++) { try { Thread.sleep(1000 ); } catch (InterruptedException e) { e.printStackTrace(); } System.out.println("子线程睡眠:" + i + "秒。" ); } }); thread.start(); for (int i = 1 ; i < 4 ; i++) { try { Thread.sleep(1000 ); } catch (InterruptedException e) { e.printStackTrace(); } System.out.println("主线程睡眠:" + i + "秒。" ); } } }
1 2 3 4 5 6 7 8 9 Result: 主线程睡眠:1 秒。 子线程睡眠:1 秒。 主线程睡眠:2 秒。 子线程睡眠:2 秒。 主线程睡眠:3 秒。 子线程睡眠:3 秒。 子线程睡眠:4 秒。 子线程睡眠:5 秒。
从结果可以看出,在未使用 join() 时主子线程会交替执行。
然后我们再把 join() 方法加入到代码中,代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 public class ThreadExample { public static void main (String[] args) throws InterruptedException { Thread thread = new Thread(() -> { for (int i = 1 ; i < 6 ; i++) { try { Thread.sleep(1000 ); } catch (InterruptedException e) { e.printStackTrace(); } System.out.println("子线程睡眠:" + i + "秒。" ); } }); thread.start(); thread.join(2000 ); for (int i = 1 ; i < 4 ; i++) { try { Thread.sleep(1000 ); } catch (InterruptedException e) { e.printStackTrace(); } System.out.println("主线程睡眠:" + i + "秒。" ); } } }
1 2 3 4 5 6 7 8 9 Result: 子线程睡眠:1 秒。 子线程睡眠:2 秒。 主线程睡眠:1 秒。 子线程睡眠:3 秒。 主线程睡眠:2 秒。 子线程睡眠:4 秒。 子线程睡眠:5 秒。 主线程睡眠:3 秒。
从执行结果可以看出,添加 join() 方法之后,主线程会先等子线程执行 2 秒之后才继续执行。
yield()
看 Thread 的源码可以知道 yield() 为本地方法,也就是说 yield() 是由 C 或 C++ 实现的,源码如下:
public static native void yield();
yield() 方法表示给线程调度器一个当前线程愿意出让 CPU 使用权的暗示,但是线程调度器可能会忽略这个暗示。
比如我们执行这段包含了 yield() 方法的代码,如下所示:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 public static void main (String[] args) throws InterruptedException { Runnable runnable = new Runnable() { @Override public void run () { for (int i = 0 ; i < 10 ; i++) { System.out.println("线程:" + Thread.currentThread().getName() + " I:" + i); if (i == 5 ) { Thread.yield(); } } } }; Thread t1 = new Thread(runnable, "T1" ); Thread t2 = new Thread(runnable, "T2" ); t1.start(); t2.start(); }
当我们把这段代码执行多次之后会发现,每次执行的结果都不相同,这是因为 yield() 执行非常不稳定,线程调度器不一定会采纳 yield() 出让 CPU 使用权的建议,从而导致了这样的结果。
Author:
Rokosnake
License:
Copyright (c) 2019 CC-BY-NC-4.0 LICENSE
Slogan:
How to thought, there is what kind of life.