一,线程的创建

在java中,有多种方式来实现多线程。继承Thread类,实现Runnable接口,使用ExecutorService,Callable,Future实现带返回结果的多线程。

1.继承Thread类创建线程

Thread类的本质是实现了Runnable接口的一个实例,代表一个线程的实例。启动线程的唯一方法就是通过Thread类的start()方法,这是一个本地方法,他会启动一个新线程,并执行run()

  1. public class Thread implements Runnable{
  2. private Runnable target;
  3. @Override
  4. public void run() {
  5. if (target != null) {
  6. target.run();
  7. }
  8. }
  9. public synchronized void start() {
  10. if (threadStatus != 0)
  11. throw new IllegalThreadStateException();
  12. group.add(this);
  13. boolean started = false;
  14. try {
  15. start0();
  16. started = true;
  17. } finally {
  18. try {
  19. if (!started) {
  20. group.threadStartFailed(this);
  21. }
  22. } catch (Throwable ignore) {
  23. /* do nothing. If start0 threw a Throwable then
  24. it will be passed up the call stack */
  25. }
  26. }
  27. }
  28. private native void start0();
  29. }

2.实现Runnable接口创建多线程

  1. @FunctionalInterface
  2. public interface Runnable {
  3. public abstract void run();
  4. }

为什么实现Runnable接口能够实现多线程?

  1. /**
  2. * @author yhd
  3. * @description 使用Runnable接口创建多线程
  4. * @email yinhuidong2@xiaomi.com
  5. * @since 2021/6/27
  6. */
  7. public class RunnableTest implements Runnable{
  8. public static void main(String[] args) {
  9. RunnableTest runnableTest = new RunnableTest();
  10. new Thread(runnableTest).start();
  11. }
  12. @Override
  13. public void run() {
  14. System.out.println(Thread.currentThread().getName());
  15. }
  16. }

在Thread类里面,有两个方法

  1. public Thread(Runnable target) {
  2. init(null, target, "Thread-" + nextThreadNum(), 0);
  3. }
  4. private void init(ThreadGroup g, Runnable target, String name,
  5. long stackSize, AccessControlContext acc) {
  6. this.target = target;
  7. }

3.实现callable接口来创建线程

有的时候,我们可能需要让一个执行的线程在执行完以后,提供一个返回值给到当前的主线程,主线程需要依赖这个值进行后续的逻辑处理,那么这个时候,就需要用到带返回值的线程了。Java中提供了这样的实现方式:

  1. /**
  2. * @author yhd
  3. * @description 使用Callable接口创建多线程
  4. * @email yinhuidong2@xiaomi.com
  5. * @since 2021/6/27
  6. */
  7. public class CallableTest implements Callable {
  8. @Override
  9. public Object call() throws Exception {
  10. System.out.println("正在计算结果");
  11. return "123";
  12. }
  13. public static void main(String[] args) {
  14. try {
  15. FutureTask task = new FutureTask<>(new CallableTest());
  16. while (task.isDone()){
  17. System.out.println(task.get());
  18. }
  19. } catch (Exception e) {
  20. } finally {
  21. }
  22. }
  23. }

二,线程的生命周期

1.生命周期

线程一共有六种状态(NEW、RUNNABLE、BLOCKED、WAITING、TIME_WAITING、TERMINATED)
New:初始化状态,线程被创建,但是还没有调用start()
Runnabled:运行状态,Java线程把操作系统中的运行状态和就绪状态统称为运行中状态。
Blocked:阻塞状态,表示线程进入等待状态,也就是线程因为某种原因放弃了CPU的使用权。
阻塞也分为几种情况:

  • 等待阻塞:运行的线程执行wait(),jvm会把当前线程放入到等待队列
  • 同步阻塞:运行的线程在获取对象的同步锁时,若该同步锁被其他线程占用了,那么JVM会把当前线程放入到锁池中,也就是同步队列
  • 其他阻塞:运行中的线程执行thread.sleep()或者thread.join(),或者发出了IO请求时,JVM会把当前线程设置为阻塞状态,当sleep结束,join线程终止,io处理完毕则线程恢复

time——waiting:超时以后自动返回。
terminated:终止状态,表示当前线程执行完毕。

线程状态转换.jpg

2.代码演示线程状态

  1. /**
  2. * @author yhd
  3. * @description 代码演示线程状态
  4. * @email yinhuidong2@xiaomi.com
  5. * @since 2021/6/27
  6. */
  7. public class ThreadStatus {
  8. public static void main(String[] args) {
  9. //time_waiting
  10. new Thread(()->{
  11. while (true){
  12. try {
  13. TimeUnit.SECONDS.sleep(100);
  14. } catch (Exception e) {
  15. } finally {
  16. }
  17. }
  18. },"time_waiting").start();
  19. //waiting 线程拿到当前的类锁以后,执行wait()
  20. new Thread(()->{
  21. while (true){
  22. synchronized (ThreadStatus.class){
  23. try {
  24. ThreadStatus.class.wait();
  25. } catch (Exception e) {
  26. } finally {
  27. }
  28. }
  29. }
  30. }).start();
  31. //block 两个线程竞争锁
  32. new Thread(new BlockedDemo(),"block-01").start();
  33. new Thread(new BlockedDemo(),"block-02").start();
  34. }
  35. static class BlockedDemo extends Thread {
  36. @Override
  37. public void run() {
  38. synchronized (BlockedDemo.class) {
  39. while (true) {
  40. try {
  41. TimeUnit.SECONDS.sleep(100);
  42. } catch (InterruptedException e) {
  43. e.printStackTrace();
  44. }
  45. }
  46. }
  47. }
  48. }
  49. }

3.通过工具查看线程的状态

jstack是java虚拟机自带的一种堆栈跟踪工具。 jstack用于打印给定的java进程ID或者core file 或者远程调试服务的Java 堆栈信息。
1.png
通过上面的代码演示,可以知道线程在整个生命周期中并不是固定处于某种状态,而是随着代码的执行在不同的状态之间进行切换。

三,线程相关方法

1.启动

调用start()去启动一个线程,当run()中的代码执行完毕以后,线程的生命周期也将终止。调用start()的语义是当前线程告诉jvm,启动调用start()方法的线程。

1)启动原理

启动一个线程为什么是调用start(),而不是run()?
调用start()实际上是调用一个native方法start0()来启动一个线程,首先start0()这个方法是在Thread.class的静态代码块中注册的。
registerNatives的本地方法的定义在文件Thread.c,Thread.c定义了各个操作系统平台要用的关于线程的公共数据和操作。

  1. #include "jni.h"
  2. #include "jvm.h"
  3. #include "java_lang_Thread.h"
  4. #define THD "Ljava/lang/Thread;"
  5. #define OBJ "Ljava/lang/Object;"
  6. #define STE "Ljava/lang/StackTraceElement;"
  7. #define ARRAY_LENGTH(a) (sizeof(a)/sizeof(a[0]))
  8. static JNINativeMethod methods[] = {
  9. {"start0", "()V", (void *)&JVM_StartThread},
  10. {"stop0", "(" OBJ ")V", (void *)&JVM_StopThread},
  11. {"isAlive", "()Z", (void *)&JVM_IsThreadAlive},
  12. {"suspend0", "()V", (void *)&JVM_SuspendThread},
  13. {"resume0", "()V", (void *)&JVM_ResumeThread},
  14. {"setPriority0", "(I)V", (void *)&JVM_SetThreadPriority},
  15. {"yield", "()V", (void *)&JVM_Yield},
  16. {"sleep", "(J)V", (void *)&JVM_Sleep},
  17. {"currentThread", "()" THD, (void *)&JVM_CurrentThread},
  18. {"countStackFrames", "()I", (void *)&JVM_CountStackFrames},
  19. {"interrupt0", "()V", (void *)&JVM_Interrupt},
  20. {"isInterrupted", "(Z)Z", (void *)&JVM_IsInterrupted},
  21. {"holdsLock", "(" OBJ ")Z", (void *)&JVM_HoldsLock},
  22. {"getThreads", "()[" THD, (void *)&JVM_GetAllThreads},
  23. {"dumpThreads", "([" THD ")[[" STE, (void *)&JVM_DumpThreads},
  24. };
  25. #undef THD
  26. #undef OBJ
  27. #undef STE
  28. JNIEXPORT void JNICALL
  29. Java_java_lang_Thread_registerNatives(JNIEnv *env, jclass cls)
  30. {
  31. (*env)->RegisterNatives(env, cls, methods, ARRAY_LENGTH(methods));
  32. }

从这段代码可以看出,start0(),实际上会执行JVM_StartThread(),这个方法是干嘛的?
从名字上来看,似乎是JVM层面去启动一个线程,如果真的是这样,那么在JVM层面,一定会调用Java中的run()
来到jvm.cpp文件(这个文件需要下载hotspot源码才能找到)。

  1. JVM_ENTRY(void, JVM_StartThread(JNIEnv* env, jobject jthread))
  2. native_thread = new JavaThread(&thread_entry, sz);

JVM_ENTRY是用来定义 JVM_StartThread函数的,在这个函数里面创建了一个真正和平台有关的本地线程. 继续看看 newJavaThread 做了什么事情,继续寻找 JavaThread的定义。

  1. JavaThread::JavaThread(ThreadFunction entry_point, size_t stack_sz) : JavaThread() {
  2. _jni_attach_state = _not_attaching_via_jni;
  3. set_entry_point(entry_point);
  4. // Create the native thread itself.
  5. // %note runtime_23
  6. os::ThreadType thr_type = os::java_thread;
  7. thr_type = entry_point == &CompilerThread::thread_entry ? os::compiler_thread :
  8. os::java_thread;
  9. os::create_thread(this, thr_type, stack_sz);
  10. }

这个方法有两个参数,第一个是函数名称,线程创建成功之后会根据这个函数名称调用对应的函数;第二个是当前进程内已经有的线程数量。最后重点关注一下os::create_thread,实际就是调用平台创建线程的方法来创建线程。
接下来就是线程的启动,会调用 Thread.cpp 文件中的Thread::start(Thread* thread)方法,代码如下:

  1. void Thread::start(Thread* thread) {
  2. if (thread->is_Java_thread()) {
  3. java_lang_Thread::set_thread_status(thread->as_Java_thread()->threadObj(),
  4. JavaThreadStatus::RUNNABLE);
  5. }
  6. os::start_thread(thread);
  7. }

start ()中有一个函数调用: os::start_thread(thread);,调用平台启动线程的方法,最终会调用 Thread.cpp 文件中的JavaThread::run()方法。

2.终止

线程的终止并不是简单的调用stop命令,虽然api仍然可以使用,但是和其他的控制线程的方法(`` suspend、resume ``)一样,都是不建议使用的。就拿stop来说,stop()在结束一个线程时并不会保证线程的资源正常释放,因此可能导致程序出现一些不确定的状态。
要优雅的去中断一个线程,在线程中提供了一个**interrupt()**

1)interrupt()

其他线程通过调用当前线程的interrupt(),表示像当前线程打个招呼,告诉他可以中断线程的执行了,至于什么时候中断,取决于当前线程自己。
线程通过检查自身 是否被中断来进行响应,可以通过isInterrupted()来判断是否被中断。
代码演示线程的优雅终止

  1. /**
  2. * @author yhd
  3. * @description 代码演示线程的优雅终止
  4. * @email yinhuidong2@xiaomi.com
  5. * @since 2021/6/27
  6. */
  7. public class Stop {
  8. private static int i;
  9. public static void main(String[] args) {
  10. Thread t = new Thread(()->{
  11. while (!Thread.currentThread().isInterrupted()){
  12. i++;
  13. }
  14. System.out.println("num:"+i);
  15. },"interrupt");
  16. t.start();
  17. try {
  18. TimeUnit.SECONDS.sleep(1);
  19. } catch (InterruptedException e) {
  20. e.printStackTrace();
  21. }
  22. t.interrupt();
  23. }
  24. }

这种通过标识位或者中断操作的方式能够使线程在终止时有机会去清理资源,而不是武断地将线程停止,因此这种终止线程的做法显得更加安全和优雅。

2)Thread.interrupted()

上面的案例中,通过interrupt,设置了一个标识告诉线程可 以 终 止 了 , 线 程 中 还 提 供 了 静 态 方 法Thread.interrupted()对设置中断标识的线程复位。比如在上面的案例中,外面的线程调用thread.interrupt 来设置中断标识,而在线程里面,又通过Thread.interrupted把线程的标识又进行了复位。

  1. public class InterruptDemo {
  2. public static void main(String[] args) throws InterruptedException {
  3. Thread thread = new
  4. Thread(() -> {
  5. while (true) {
  6. if (Thread.currentThread().isInterrupted()) {
  7. System.out.println("before:" + Thread.currentThread().isInterrupted())
  8. ;
  9. Thread.interrupted(); // 对线程进行复位,由 true 变成 false
  10. System.out.println("after:" + Thread
  11. .currentThread().isInterrupted());
  12. }
  13. }
  14. }, "interruptDemo");
  15. thread.start();
  16. TimeUnit.SECONDS.sleep(1);
  17. thread.interrupt();
  18. }
  19. }

3)其他线程的复位

除了通过 Thread.interrupted 方法对线程中断标识进行复位 以 外 , 还 有 一 种 被 动 复 位 的 场 景 , 就 是 对 抛 出InterruptedException 异 常 的 方 法 , 在InterruptedException 抛出之前,JVM 会先把线程的中断标识位清除,然后才会抛出InterruptedException,这个时候如果调用isInterrupted(),将会返回 false。

  1. public class InterruptDemo {
  2. private static int i;
  3. public static void main(String[] args) throws InterruptedException {
  4. Thread thread = new Thread(() -> {
  5. while (!Thread.currentThread().isInterrupted()) {
  6. try {
  7. TimeUnit.SECONDS.sleep(1);
  8. } catch (InterruptedException e) {
  9. e.printStackTrace();
  10. }
  11. }
  12. System.out.println("Num:" + i);
  13. }, "interruptDemo");
  14. thread.start();
  15. TimeUnit.SECONDS.sleep(1);
  16. thread.interrupt();
  17. System.out.println(thread.isInterrupted());
  18. }
  19. }

4)为什么要复位

Thread.interrupted()是属于当前线程的,是当前线程对外界中断信号的一个响应,表示自己已经得到了中断信号,但不会立刻中断自己,具体什么时候中断由自己决定,让外界知道在自身中断前,他的中断状态仍然是 false,这就是复位的原因。

5)线程的终止原理

  1. public void interrupt() {
  2. if (this != Thread.currentThread())
  3. checkAccess();
  4. synchronized (blockerLock) {
  5. Interruptible b = blocker;
  6. if (b != null) {
  7. interrupt0(); // Just to set the interrupt flag
  8. b.interrupt(this);
  9. return;
  10. }
  11. }
  12. interrupt0();
  13. }

这个方法里面,调用了interrupt0(),这个方法在前面分析start()的时候见过,是一个 native 方法,同样,找到jvm.cpp 文件,找到JVM_Interrupt 的定义,这个方法比较简单,直接调用了Thread::interrupt(thr),这个方法的定义在 Thread.cpp 文件中,Thread::interrupt() 调用了 os::interrupt(),这个是调用平台的interrupt(),这个方法的实现是在os_*.cpp文件中,其中星号代表的是不同平台,因为 jvm 是跨平台的,所以对于不同的操作平台,线程的调度方式都是不一样的。以os_linux.cpp 文件为例:set_interrupted(true)实际上就是调用 osThread.hpp 中的set_interrupted(),在 osThread 中定义了一个成员属性volatile jint _interrupted

通过上面的代码分析可以知道,thread.interrupt()实际就是设置一个 interrupted 状态标识为 true、并且通过ParkEvent 的 unpark()来唤醒线程。

对于 synchronized阻塞的线程,被唤醒以后会继续尝试获取锁,如果失败仍然可能被 park

在调用 ParkEvent 的 park 方法之前,会先判断线程的中断状态,如果为 true,会清除当前线程的中断标识

Object.waitThread.sleepThread.join 会 抛 出InterruptedException

为什么 Object.wait、Thread.sleep 和 Thread.join 都 会 抛 出InterruptedException?

这几个方法有一个共同点,都是属于阻塞的方法,而阻塞方法的释放会取决于一些外部的事件,但是阻塞方法可能因为等不到外部的触发事件而导致无法终止,所以它允许一个线程请求自己来停止它正在做的事情。当一个方法抛出 InterruptedException 时,它是在告诉调用者如果执行该方法的线程被中断,它会尝试停止正在做的事情并且通过抛出 InterruptedException 表示提前返回。所以,这个异常的意思是表示一个阻塞被其他线程中断了。然后,由于线程调用了 interrupt()中断方法,那么Object.wait、Thread.sleep 等被阻塞的线程被唤醒以后会通过 is_interrupted 方法判断中断标识的状态变化,如果发现中断标识为 true,则先清除中断标识,然后抛出InterruptedException。

InterruptedException 异常的抛出并不意味着线程必须终止,而是提醒当前线程有中断的操作发生,至于接下来怎么处理取决于线程本身,

直接捕获异常不做任何处理

将异常往外抛出

停止当前线程,并打印异常信息

总结:如果当前线程正处于wait,sleep,join状态,然后当前线程被打断,如果当前线程中断标识为true,清除当前线程的中端标识,并且当前线程会收到中断异常。

6)代码时间

①打断sleep,wait,join的线程

这几个方法都会让线程进入阻塞状态
打断sleep的线程,会清空打断状态,并抛出异常

  1. /**
  2. * @author yhd
  3. * @description interrupt打断sleep的线程
  4. * @email yinhuidong2@xiaomi.com
  5. * @since 2021/6/27
  6. */
  7. public class Sleep {
  8. public static void test() throws Exception{
  9. Thread t = new Thread(()->{
  10. try {
  11. Thread.sleep(10000);
  12. } catch (Exception e) {
  13. System.out.println("抛出异常");
  14. } finally {
  15. }
  16. });
  17. t.start();
  18. Thread.sleep(1000);
  19. t.interrupt();
  20. System.out.println("打断状态:"+t.isInterrupted());
  21. }
  22. public static void main(String[] args) {
  23. try {
  24. test();
  25. } catch (Exception e) {
  26. e.printStackTrace();
  27. }
  28. }
  29. }

②打断正常运行的线程

打断正常运行的线程,不会清空打断状态

  1. /**
  2. * @author yhd
  3. * @description 打断正常运行的线程
  4. * @email yinhuidong2@xiaomi.com
  5. * @since 2021/6/27
  6. */
  7. public class InterruptTest {
  8. private static void test1() throws InterruptedException {
  9. Thread t2 = new Thread(()->{
  10. while(true) {
  11. Thread current = Thread.currentThread();
  12. boolean interrupted = current.isInterrupted();
  13. if(interrupted) {
  14. System.out.println(" 打断状态: {}"+ Thread.currentThread().isInterrupted());
  15. break;
  16. }
  17. }
  18. }, "t2");
  19. t2.start();
  20. sleep(1);
  21. t2.interrupt();
  22. }
  23. public static void main(String[] args) throws Exception {
  24. test1();
  25. }
  26. }

③打断park线程

  1. /**
  2. * @author yhd
  3. * @description 打断park线程
  4. * @email yinhuidong2@xiaomi.com
  5. * @since 2021/6/27
  6. */
  7. public class ParkTest {
  8. private static void test1() throws InterruptedException {
  9. Thread t1 = new Thread(() -> {
  10. System.out.println("park...");
  11. LockSupport.park();
  12. System.out.println("unpark...");
  13. System.out.println("打断状态:{}"+ Thread.currentThread().isInterrupted());
  14. }, "t1");
  15. t1.start();
  16. sleep(1);
  17. t1.interrupt();
  18. }
  19. public static void main(String[] args) throws Exception {
  20. test1();
  21. }
  22. }

如果打断标记已经是true,则park会失效。

  1. /**
  2. * @author yhd
  3. * @description park的第二个案例演示
  4. * @email yinhuidong2@xiaomi.com
  5. * @since 2021/6/27
  6. */
  7. public class ParkTest2 {
  8. private static void test4() throws InterruptedException {
  9. Thread t1 = new Thread(() -> {
  10. for (int i = 0; i < 5; i++) {
  11. System.out.println("park...");
  12. LockSupport.park();
  13. System.out.println("打断状态:{}"+Thread.currentThread().isInterrupted());
  14. }
  15. });
  16. t1.start();
  17. sleep(1);
  18. t1.interrupt();
  19. }
  20. public static void main(String[] args) throws Exception {
  21. test4();
  22. }
  23. }

可以使用 Thread.interrupted() 清除打断状态。

3.sleep() & yield()

1)sleep()

  1. 调用sleep会让当前线程从running状态进入timedwaiting状态(阻塞)
  2. 其他线程可以使用interrupt打断正在睡眠的线程,这时sleep()会抛出中断异常
  3. 睡眠结束后的线程未必会立即得到执行
  4. 建议使用TimeUnit.second.sleep()替代sleep获得更好的可读性

    2)yield()

  5. 调用yield会让当前线程从running进入runnable就绪状态,然后调度执行其他线程

  6. 具体的实现依赖于操作系统的任务调度器

    4.join()

    1)为什么需要join

    下面的代码,打印r是什么?

    1. /**
    2. * @author yhd
    3. */
    4. public class JoinDemo {
    5. static int r = 0;
    6. public static void main(String[] args) throws InterruptedException {
    7. test1();
    8. }
    9. private static void test1() throws InterruptedException {
    10. System.out.println("开始");
    11. Thread t1 = new Thread(() -> {
    12. System.out.println("开始");
    13. try {
    14. sleep(1);
    15. } catch (InterruptedException e) {
    16. e.printStackTrace();
    17. }
    18. System.out.println("结束");
    19. r = 10;
    20. });
    21. t1.start();
    22. System.out.println("结果为:{}"+r);
    23. System.out.println("结束");
    24. }
    25. }

    分析:
    因为主线程和线程t1是并行执行的,t1需要1s之后才能算出r=10
    而主线程一开始就要打印r的结果,所以只能打印r=0

解决方法:

  1. sleep为什么不行?因为主线程无法准确捕捉到t1线程什么时候结束
  2. 用join,加在t1.start()之后

    2)有时效的join()

    等够时间

    1. public class JoinDemo {
    2. static int r1 = 0;
    3. static int r2 = 0;
    4. public static void main(String[] args) throws InterruptedException {
    5. test3();
    6. }
    7. public static void test3() throws InterruptedException {
    8. Thread t1 = new Thread(() -> {
    9. try {
    10. sleep(1);
    11. } catch (InterruptedException e) {
    12. e.printStackTrace();
    13. }
    14. r1 = 10;
    15. });
    16. long start = System.currentTimeMillis();
    17. t1.start();// 线程执行结束会导致 join 结束
    18. t1.join(1500);
    19. long end = System.currentTimeMillis();
    20. System.out.println("r1: {} r2: {} cost: {}"+ r1 +" "+ r2+" "+ (end - start));
    21. }
    22. }

    t1线程的结束会导致调用了t1.join(1500)的主线程结束。

没等够时间

  1. public class JoinDemo {
  2. static int r1 = 0;
  3. static int r2 = 0;
  4. public static void main(String[] args) throws InterruptedException {
  5. test3();
  6. }
  7. public static void test3() throws InterruptedException {
  8. Thread t1 = new Thread(() -> {
  9. try {
  10. sleep(2);
  11. } catch (InterruptedException e) {
  12. e.printStackTrace();
  13. }
  14. r1 = 10;
  15. });
  16. long start = System.currentTimeMillis();
  17. t1.start();
  18. t1.join(1500);
  19. long end = System.currentTimeMillis();
  20. System.out.println("r1: {} r2: {} cost: {}"+ r1 +" "+ r2+" "+ (end - start));
  21. }
  22. }

join时间到了线程会尝试重新获取CPU执行权。

3)原理

调用者轮训检查alive状态

  1. t1.join();

等价于

  1. synchronized (t1) {
  2. // 调用者线程进入 t1 的 waitSet 等待, 直到 t1 运行结束
  3. while (t1.isAlive()) {
  4. t1.wait(0);
  5. }
  6. }

当前线程调用其他线程的wait(),会让当前线程处于阻塞状态,直到其他线程的wait()执行结束。
join()能够让线程顺序执行的原因就是底层实际上是wait(),也就是主线程调用t1线程的join(),会让主线程阻塞,直到t1线程的join()执行结束。

5.java中操作线程的方法

方法名 static 功能说明 注意
start() 启动一个新线程,在新的线程运行 run 方法中的代码 start 方法只是让线程进入就绪,里面代码不一定立刻运行(CPU 的时间片还没分给它)。每个线程对象的start方法只能调用一次,如果调用了多次会出现IllegalThreadStateException。
run() 新线程启动后会调用的方法 如果在构造 Thread 对象时传递了 Runnable 参数,则线程启动后会调用 Runnable 中的 run 方法,否则默认不执行任何操作。但可以创建 Thread 的子类对象,来覆盖默认行为
join() 等待线程运行结束
join(long n) 等待线程运行结束,最多等待 n毫秒
getId() 获取线程长整型的 id 唯一
getName() 获取线程名
setName(String) 修改线程名
getPriority() 获取线程优先级
setPriority(int) 修改线程优先级 java中规定线程优先级是1~10 的整数,较大的优先级能提高该线程被 CPU 调度的机率
getState() 获取线程状态 Java 中线程状态是用 6 个 enum 表示,分别为:NEW, RUNNABLE, BLOCKED, WAITING,TIMED_WAITING, TERMINATED
isInterrupted() 判断是否被打断 不会清除 打断标记
isAlive() 线程是否存活(还没有运行完毕)
interrupt() 打断线程 如果被打断线程正在 sleep,wait,join 会导致被打断的线程抛出 InterruptedException,并清除 打断标记 ;如果打断的正在运行的线程,则会设置 打断标记 ;park 的线程被打断,也会设置 打断标记
interrupted() static 判断当前线程是否被打断 会清除 打断标记
currentThread() static 获取当前正在执行的线程
sleep(long n) static 让当前执行的线程休眠n毫秒,休眠时让出 cpu的时间片给其它线程
yield() static 提示线程调度器让出当前线程对CPU的使用 主要是为了测试和调试

6.LockSupport

用于创建锁和其他同步类的基本线程阻塞原语。

本质就是线程阻塞和唤醒wait notify的加强版

park() unpark()

1)线程阻塞唤醒的三种方法

①使用Object中的wait()让线程等待,使用Object的notify()唤醒线程。

  1. /**
  2. * @author yhd
  3. * @description 阻塞&唤醒
  4. * @email yinhuidong2@xiaomi.com
  5. * @since 2021/6/28
  6. */
  7. public class WaitNotify {
  8. private static Object lock = new Object();
  9. public static void main(String[] args) {
  10. new Thread(()->{
  11. synchronized (lock){
  12. try {
  13. lock.wait();
  14. System.out.println(Thread.currentThread().getName()+"继续执行!");
  15. } catch (InterruptedException e) {
  16. e.printStackTrace();
  17. }
  18. }
  19. },"t1").start();
  20. new Thread(()->{
  21. synchronized (lock){
  22. lock.notify();
  23. System.out.println(Thread.currentThread().getName()+"唤醒");
  24. }
  25. },"t2").start();
  26. }
  27. }

存在的问题:必须在synchronized代码块里,顺序不能反。

②使用Condition的await和signal方法

  1. /**
  2. * @author yhd
  3. * @description 阻塞&唤醒
  4. * @email yinhuidong2@xiaomi.com
  5. * @since 2021/6/28
  6. */
  7. public class AwaitSignal {
  8. private static Lock lock = new ReentrantLock();
  9. private static Condition condition =lock.newCondition();
  10. public static void main(String[] args) {
  11. new Thread(()->{
  12. lock.lock();
  13. try {
  14. condition.await();
  15. } catch (Exception e) {
  16. } finally {
  17. lock.unlock();
  18. }
  19. },"t1").start();
  20. new Thread(()->{
  21. lock.lock();
  22. try {
  23. condition.signal();
  24. } catch (Exception e) {
  25. } finally {
  26. lock.unlock();
  27. }
  28. },"t2").start();
  29. }
  30. }

存在的问题:必须在lock代码块里面使用,使用顺序不能反。

③LockSupport类park()可以阻塞当前线程以及unpark(Thread)唤醒指定被阻塞的线程。

LockSupport类使用了一种名为Permit(许可)的概念来做到阻塞和唤醒线程的功能,每个线程都有一个许可,permit只有1和0两个值,默认是0.

permit默认是0,所以一开始调用park()方法,当前线程就会阻塞,直到别的线程将当前线程的permit设置为1时,park方法会被唤醒,然后将permit再次设置为0并返回。

  1. /**
  2. * @author yhd
  3. * @description 阻塞&唤醒
  4. * @email yinhuidong2@xiaomi.com
  5. * @since 2021/6/28
  6. */
  7. public class ParkUnpark {
  8. public static void main(String[] args) {
  9. LockSupport.unpark(Thread.currentThread());
  10. LockSupport.park();
  11. LockSupport.park();
  12. }
  13. }

2)总结

LockSupport是一个线程阻塞工具类,所有的方法都是静态方法,可以让线程在任意位置阻塞,阻塞之后也有对应的唤醒方法。归根结底,LockSupport调用的Unsafe中的native代码。

LockSupport提供park()和unpark()方法实现阻塞线程和解除线程阻塞的过程

LockSupport和每个使用它的线程都有一个许可(permit)关联。permit相当于1,0的开关,默认是0,调用一次unpark就加1变成1,调用一次park会消费permit,也就是将1变成o,同时park立即返回。

如再次调用park会变成阻塞(因为permit为零了会阻塞在这里,一直到permit变为1),这时调用unpark会把permit置为1。

每个线程都有一个相关的permit, permit最多只有一个,重复调用unpark也不会积累凭证。

为什么可以先唤醒线程后阻塞线程?

因为unpark获得了一个凭证,之后再调用park方法,就可以名正言顺的凭证消费,故不会阻塞。

为什么唤醒两次后阻塞两次,但最终结果还会阻塞线程?

因为凭证的数量最多为1,连续调用两次unpark和调用一次unpark效果一样,只会增加一个凭证;而调用两次park却需要消费两个凭证,证不够,不能放行。

四,多线程相关概念

1.并发?并行

单核 cpu 下,线程实际还是 串行执行 的。操作系统中有一个组件叫做任务调度器,将 cpu 的时间片(windows下时间片最小约为 15 毫秒)分给不同的程序使用,只是由于 cpu 在线程间(时间片很短)的切换非常快,人类感觉是 同时运行的 。总结为一句话就是: 微观串行,宏观并行 ,一般会将这种 线程轮流使用 CPU 的做法称为并发, concurrent

cpu 时间片1 时间片2 时间片3 时间片4
core 线程1 线程2 线程3 线程4
  1. ![1.jpg](https://cdn.nlark.com/yuque/0/2021/jpeg/12610368/1624787362244-9a92961f-2556-4e2e-95b7-b3f991a338bb.jpeg#height=702&id=crllG&margin=%5Bobject%20Object%5D&name=1.jpg&originHeight=702&originWidth=511&originalType=binary&ratio=1&size=50158&status=done&style=none&width=511)<br />多核 cpu下,每个 核(core) 都可以调度运行线程,这时候线程可以是并行的。
cpu 时间片1 时间片2 时间片3 时间片4
core1 线程1 线程1 线程3 线程3
core2 线程2 线程2 线程4 线程4
  1. ![1.jpg](https://cdn.nlark.com/yuque/0/2021/jpeg/12610368/1624787442349-f684ef96-f3ce-4cf9-9755-c489f25fc335.jpeg#height=707&id=d6WSL&margin=%5Bobject%20Object%5D&name=1.jpg&originHeight=707&originWidth=510&originalType=binary&ratio=1&size=52571&status=done&style=none&width=510)<br />并发是同一时间应对多件事情的能力。并行是同一时间动手做多件事情的能力。
  1. 单核CPU下,多线程不能实际提高运行效率,只是为了能够在不同的任务之间切换,不同的线程轮流使用CPU,不至于一个线程总占用CPU,别的线程没法干活。
  2. 多核CPU可以并行跑多个线程,但能否提高运行效率还是要看具体情况的。
  3. IO操作不占用CPU,只是一般拷贝文件使用的是阻塞IO,这时相当于线程虽然不用CPU,但是需要一直等待IO结束,没能充分利用线程。所以后面才有非阻塞IO和异步IO的优化。

2.线程上下文的切换

因为以下一些原因导致 cpu 不再执行当前的线程,转而执行另一个线程的代码[1]

  1. 线程的cpu时间片用完

  2. 垃圾回收

  3. 有更高优先级的线程需要运行

  4. 线程自己调用了 sleep、yield、wait、join、park、synchronized、lock 等方法。

当 Context Switch 发生时,需要由操作系统保存当前线程的状态,并恢复另一个线程的状态[2],Java 中对应的概念就是程序计数器(Program Counter Register),它的作用是记住下一条 jvm 指令的执行地址,是线程私有的

3.主线程与守护线程

默认情况下,Java 进程需要等待所有线程都运行结束,才会结束。有一种特殊的线程叫做守护线程,只要其它非守护线程运行结束了,即使守护线程的代码没有执行完,也会强制结束。

垃圾回收器线程就是一种守护线程。

Tomcat 中的 Acceptor 和 Poller 线程都是守护线程,所以 Tomcat 接收到 shutdown 命令后,不会等待它们处理完当前请求。

4.临界区的概念

一个程序运行多个线程本身是没有问题的,问题出在多个线程访问共享资源。

多个线程读共享资源其实也没有问题,在多个线程对共享资源读写操作时发生指令交错,就会出现问题。

一段代码块内如果存在对共享资源的多线程读写操作,称这段代码块为临界区。

5.死锁

1)死锁

有这样的情况:一个线程需要同时获取多把锁,这时就容易发生死锁

t1 线程 获得 A对象 锁,接下来想获取 B对象 的锁 t2 线程 获得 B对象 锁,接下来想获取 A对象 的锁 例:

2)定位死锁

检测死锁可以使用 jconsole工具,或者使用 jps 定位进程 id,再用 jstack 定位死锁。

避免死锁要注意加锁顺序。

另外如果由于某个线程进入了死循环,导致其它线程一直等待,对于这种情况 linux 下可以通过 top 先定位到CPU 占用高的 Java 进程,再利用top -Hp 进程id来定位是哪个线程,最后再用 jstack 排查。

6.活锁

活锁出现在两个线程互相改变对方的结束条件,最后谁也无法结束。

7.final原理

1)设置 final 变量的原理

字节码

发现 final 变量的赋值也会通过 putfield 指令来完成,同样在这条指令之后也会加入写屏障,保证在其它线程读到它的值时不会出现为 0 的情况。

  1. Context Switch 频繁发生会影响性能. ↩︎
  2. 状态包括程序计数器、虚拟机栈中每个栈帧的信息,如局部变量、操作数栈、返回地址等. ↩︎

8.可重入锁

可重入锁又名递归锁

是指在同一个线程在外层方法获取锁的时候,再进去该线程的内层方法会自动获取锁(前提:同一个锁对象),不会因为之前已经获取过还没释放而阻塞。

java中的ReentrantLock和Synchronized都是可重入锁,可重入锁的一个优点是可一定程度避免死锁。

  1. public class Demo2 {
  2. private static Object lock = new Object();
  3. public static void main(String[] args) {
  4. test();
  5. }
  6. public static void test() {
  7. new Thread(() -> {
  8. synchronized (lock) {
  9. System.out.println(Thread.currentThread().getName() + "外");
  10. synchronized (lock) {
  11. System.out.println(Thread.currentThread().getName() + "中");
  12. synchronized (lock) {
  13. System.out.println(Thread.currentThread().getName() + "内");
  14. }
  15. }
  16. }
  17. }).start();
  18. }
  19. }

五,线程通信

1.两个线程交替打印

题目

i=0,a:i++,b:i—,交替打印10次

1.1 使用synchronized

  1. /**
  2. * @author 二十
  3. * @since 2021/8/31 9:01 下午
  4. */
  5. public class DemoA {
  6. static CountDownLatch count=new CountDownLatch(2);
  7. public static void main(String[] args)throws Exception {
  8. Lock lock = new Lock();
  9. new Thread(()->{
  10. for (int i = 0; i < 10; i++) {
  11. try {
  12. lock.add();
  13. }catch (Exception e){
  14. }
  15. }
  16. count.countDown();
  17. },"A").start();
  18. new Thread(()->{
  19. for (int i = 0; i < 10; i++) {
  20. try {
  21. lock.del();
  22. }catch (Exception e){
  23. }
  24. }
  25. count.countDown();
  26. },"B").start();
  27. count.await();
  28. }
  29. private static class Lock{
  30. static int num = 0;
  31. public synchronized void add()throws Exception{
  32. if (num!=0){
  33. this.wait();
  34. }
  35. System.out.println(Thread.currentThread().getName()+"num = " + ++num);
  36. this.notify();
  37. }
  38. public synchronized void del()throws Exception{
  39. if (num!=1){
  40. this.wait();
  41. }
  42. System.out.println(Thread.currentThread().getName()+"num = " + --num);
  43. this.notify();
  44. }
  45. }
  46. }

1.2 两个线程可以正常执行,现在增加到四个

  1. /**
  2. * @author 二十
  3. * @since 2021/8/31 9:24 下午
  4. */
  5. public class DemoB {
  6. static CountDownLatch count=new CountDownLatch(4);
  7. public static void main(String[] args)throws Exception {
  8. Lock lock = new Lock();
  9. new Thread(()->{
  10. for (int i = 0; i < 10; i++) {
  11. try {
  12. lock.add();
  13. }catch (Exception e){
  14. }
  15. }
  16. count.countDown();
  17. },"A").start();
  18. new Thread(()->{
  19. for (int i = 0; i < 10; i++) {
  20. try {
  21. lock.del();
  22. }catch (Exception e){
  23. }
  24. }
  25. count.countDown();
  26. },"B").start();
  27. new Thread(()->{
  28. for (int i = 0; i < 10; i++) {
  29. try {
  30. lock.add();
  31. }catch (Exception e){
  32. }
  33. }
  34. count.countDown();
  35. },"C").start();
  36. new Thread(()->{
  37. for (int i = 0; i < 10; i++) {
  38. try {
  39. lock.del();
  40. }catch (Exception e){
  41. }
  42. }
  43. count.countDown();
  44. },"D").start();
  45. count.await();
  46. }
  47. private static class Lock{
  48. static int num = 0;
  49. public synchronized void add()throws Exception{
  50. if (num!=0){
  51. this.wait();
  52. }
  53. System.out.println(Thread.currentThread().getName()+"num = " + ++num);
  54. this.notify();
  55. }
  56. public synchronized void del()throws Exception{
  57. if (num!=1){
  58. this.wait();
  59. }
  60. System.out.println(Thread.currentThread().getName()+"num = " + --num);
  61. this.notify();
  62. }
  63. }
  64. }

image.png

1.3 线程间调用化定制通信

查看jdkAPI wait();

temp.jpg
注意:判断一定要while循环判断,不能用if,防止多线程虚假唤醒。

image.png

1.4 使用lock

  1. /**
  2. * @author 二十
  3. * @since 2021/8/31 9:30 下午
  4. */
  5. public class DemoC {
  6. private static CountDownLatch count = new CountDownLatch(2);
  7. public static void main(String[] args)throws Exception {
  8. Data data = new Data();
  9. new Thread(()->{
  10. for (int i = 0; i < 10; i++) {
  11. try {
  12. data.add();
  13. } catch (Exception e) {
  14. e.printStackTrace();
  15. }
  16. }
  17. count.countDown();
  18. },"A").start();
  19. new Thread(()->{
  20. for (int i = 0; i < 10; i++) {
  21. try {
  22. data.del();
  23. } catch (Exception e) {
  24. e.printStackTrace();
  25. }
  26. }
  27. count.countDown();
  28. },"B").start();
  29. count.await();
  30. }
  31. private static class Data {
  32. static volatile int num =0;
  33. static ReentrantLock lock = new ReentrantLock();
  34. static Condition c =lock.newCondition();
  35. public void add()throws Exception{
  36. lock.lock();
  37. try {
  38. while (num!=0){
  39. c.await();
  40. }
  41. System.out.println(Thread.currentThread().getName()+" num = " + ++num);
  42. c.signal();
  43. }finally {
  44. lock.unlock();
  45. }
  46. }
  47. public void del()throws Exception{
  48. lock.lock();
  49. try {
  50. while (num!=1){
  51. c.await();
  52. }
  53. System.out.println(Thread.currentThread().getName()+" num = " + --num);
  54. c.signal();
  55. }finally {
  56. lock.unlock();
  57. }
  58. }
  59. }
  60. }

2.多个线程按顺序打印

题目:

多线程之间按照顺序调用,实现A-B-C

三个线程启动,要求如下:

AA打印5次,BB打印10次,CC打印15次

接着循环10轮

分析:

  1. 有顺序通知,需要有标识位
  2. 有一个锁,lock,3把钥匙condition
  3. 判断标识位
  4. 输出线程名+第几次+第几轮
  5. 修改标识位,通知下一个
  1. /**
  2. * @author 二十
  3. * @since 2021/8/31 9:48 下午
  4. */
  5. public class DemoD {
  6. static CountDownLatch c = new CountDownLatch(3);
  7. public static void main(String[] args) throws Exception {
  8. Data data = new Data();
  9. for (int i = 0; i < 10; i++) {
  10. new Thread(() -> {
  11. data.p1();
  12. c.countDown();
  13. }, "A").start();
  14. new Thread(() -> {
  15. data.p2();
  16. c.countDown();
  17. }, "B").start();
  18. new Thread(() -> {
  19. data.p3();
  20. c.countDown();
  21. }, "C").start();
  22. }
  23. c.await();
  24. }
  25. private static class Data {
  26. static int flag = 0;
  27. ReentrantLock lock = new ReentrantLock();
  28. Condition c1 = lock.newCondition();
  29. Condition c2 = lock.newCondition();
  30. Condition c3 = lock.newCondition();
  31. public void printf() {
  32. System.out.println(Thread.currentThread().getName() + " flag" + flag);
  33. }
  34. public void p1() {
  35. lock.lock();
  36. try {
  37. while (flag != 0) {
  38. try {
  39. c1.await();
  40. } catch (InterruptedException e) {
  41. e.printStackTrace();
  42. }
  43. }
  44. for (int i = 0; i < 5; i++) {
  45. printf();
  46. }
  47. flag++;
  48. c2.signal();
  49. } finally {
  50. lock.unlock();
  51. }
  52. }
  53. public void p2() {
  54. lock.lock();
  55. try {
  56. while (flag != 1) {
  57. try {
  58. c2.await();
  59. } catch (InterruptedException e) {
  60. e.printStackTrace();
  61. }
  62. }
  63. for (int i = 0; i < 10; i++) {
  64. printf();
  65. }
  66. flag++;
  67. c3.signal();
  68. } finally {
  69. lock.unlock();
  70. }
  71. }
  72. public void p3() {
  73. lock.lock();
  74. try {
  75. while (flag != 2) {
  76. try {
  77. c3.await();
  78. } catch (InterruptedException e) {
  79. e.printStackTrace();
  80. }
  81. }
  82. for (int i = 0; i < 15; i++) {
  83. printf();
  84. }
  85. flag = 0;
  86. c1.signal();
  87. } finally {
  88. lock.unlock();
  89. }
  90. }
  91. }
  92. }

六,线程与集合

1.如何证明集合是线程不安全的

  1. public static void main(String[] args) {
  2. List<String> list = new ArrayList<>();
  3. for (int i = 0; i < 30; i++) {
  4. new Thread(() -> {
  5. list.add(UUID.randomUUID().toString().substring(8));
  6. System.out.println(list);
  7. }, String.valueOf(i)).start();
  8. }
  9. }
  10. //java.util.ConcurrentModificationException

image.png

2.如何让集合变的安全

2.1 调用工具类

  1. List<String> list= Arrays.asList("a","b","c","d");
  2. List<String> list2= Collections.synchronizedList(list);

2.2 使用JUC

  1. copyOnWriteArrayList
  2. ConcurrentLinkedQueue
  3. ConcurrentHashMap
  1. public static void main(String[] args) {
  2. CopyOnWriteArrayList<String> list = new CopyOnWriteArrayList<>();
  3. for (int i = 0; i < 30; i++) {
  4. new Thread(()->{
  5. list.add(UUID.randomUUID().toString().substring(8));
  6. System.out.println(list);
  7. },String.valueOf(i)).start();
  8. }
  9. }

源码:
image.png

  1. /**
  2. * @author 二十
  3. * @since 2021/8/31 10:44 下午
  4. */
  5. public class DemoF {
  6. public static void main(String[] args) {
  7. Printers printers = new Printers();
  8. new Thread(() -> {
  9. for (int i = 1; i <= 26; i++)
  10. printers.printNum();
  11. }, "数字打印线程").start();
  12. new Thread(() -> {
  13. for (int i = 1; i <= 26; i++)
  14. printers.printLetter(i + 64);
  15. }, "字母打印线程").start();
  16. }
  17. private static class Printers {
  18. private int num = 1;
  19. private int a = 0;
  20. private ReentrantLock lock = new ReentrantLock();
  21. private Condition cd1 = lock.newCondition();
  22. private Condition cd2 = lock.newCondition();
  23. public void printNum() {
  24. try {
  25. lock.lock();
  26. while (num != 1)
  27. cd1.await();
  28. for (int i = 0; i < 2; i++) {
  29. System.out.println(Thread.currentThread().getName() + "打印了:" + ++a);
  30. }
  31. num++;
  32. cd2.signal();
  33. } catch (Exception e) {
  34. e.printStackTrace();
  35. } finally {
  36. lock.unlock();
  37. }
  38. }
  39. public void printLetter(int aa) {
  40. try {
  41. lock.lock();
  42. while (num != 2)
  43. cd2.await();
  44. System.out.println(Thread.currentThread().getName() + "打印了:" + (char) aa);
  45. num--;
  46. cd1.signal();
  47. } catch (Exception e) {
  48. e.printStackTrace();
  49. } finally {
  50. lock.unlock();
  51. }
  52. }
  53. }
  54. }