• JAVA面向对象学习——java多线程———菜鸟教程记录


    Java 多线程编程

    Java 给多线程编程提供了内置的支持。 一条线程指的是进程中一个单一顺序的控制流,一个进程中可以并发多个线程,每条线程并行执行不同的任务。

    多线程是多任务的一种特别的形式,但多线程使用了更小的资源开销。

    这里定义和线程相关的另一个术语 - 进程:一个进程包括由操作系统分配的内存空间,包含一个或多个线程。

    一个线程不能独立的存在,它必须是进程的一部分。

    一个进程一直运行,直到所有的非守护线程都结束运行后才能结束。

    多线程能满足程序员编写高效率的程序来达到充分利用 CPU 的目的。


    一个线程的生命周期

    线程是一个动态执行的过程,它也有一个从产生到死亡的过程。

    下图显示了一个线程完整的生命周期。

    • 新建状态:

      使用 new 关键字和 Thread 类或其子类建立一个线程对象后,该线程对象就处于新建状态。它保持这个状态直到程序 start() 这个线程。

    • 就绪状态:

      当线程对象调用了start()方法之后,该线程就进入就绪状态。就绪状态的线程处于就绪队列中,要等待JVM里线程调度器的调度。

    • 运行状态:

      如果就绪状态的线程获取 CPU 资源,就可以执行 run(),此时线程便处于运行状态。处于运行状态的线程最为复杂,它可以变为阻塞状态、就绪状态和死亡状态。

    • 阻塞状态:

      如果一个线程执行了sleep(睡眠)、suspend(挂起)等方法,失去所占用资源之后,该线程就从运行状态进入阻塞状态。在睡眠时间已到或获得设备资源后可以重新进入就绪状态。可以分为三种:

      • 等待阻塞:运行状态中的线程执行 wait() 方法,使线程进入到等待阻塞状态。

      • 同步阻塞:线程在获取 synchronized 同步锁失败(因为同步锁被其他线程占用)。

      • 其他阻塞:通过调用线程的 sleep() 或 join() 发出了 I/O 请求时,线程就会进入到阻塞状态。当sleep() 状态超时,join() 等待线程终止或超时,或者 I/O 处理完毕,线程重新转入就绪状态。

    • 死亡状态:

      一个运行状态的线程完成任务或者其他终止条件发生时,该线程就切换到终止状态。


    线程的优先级

    每一个 Java 线程都有一个优先级,这样有助于操作系统确定线程的调度顺序。

    Java 线程的优先级是一个整数,其取值范围是 1 (Thread.MIN_PRIORITY ) - 10 (Thread.MAX_PRIORITY )。

    默认情况下,每一个线程都会分配一个优先级 NORM_PRIORITY(5)。

    具有较高优先级的线程对程序更重要,并且应该在低优先级的线程之前分配处理器资源。但是,线程优先级不能保证线程执行的顺序,而且非常依赖于平台。


    创建一个线程

    Java 提供了三种创建线程的方法:

    • 通过实现 Runnable 接口;
    • 通过继承 Thread 类本身;
    • 通过 Callable 和 Future 创建线程。

    通过实现 Runnable 接口来创建线程

    创建一个线程,最简单的方法是创建一个实现 Runnable 接口的类。

    为了实现 Runnable,一个类只需要执行一个方法调用 run(),声明如下:

    public void run()

    你可以重写该方法,重要的是理解的 run() 可以调用其他方法,使用其他类,并声明变量,就像主线程一样。

    在创建一个实现 Runnable 接口的类之后,你可以在类中实例化一个线程对象。

    Thread 定义了几个构造方法,下面的这个是我们经常使用的:

     
    Thread(Runnable threadOb,String threadName);

    这里,threadOb 是一个实现 Runnable 接口的类的实例,并且 threadName 指定新线程的名字。

    新线程创建之后,你调用它的 start() 方法它才会运行。

    void start();

    =============================================================================

    示例:

    class RunnableDemo implements Runnable {
       private Thread t;
       private String threadName;
       
       RunnableDemo( String name) {
          threadName = name;
          System.out.println("Creating " +  threadName );
       }
       
       public void run() {
          System.out.println("Running " +  threadName );
          try {
             for(int i = 4; i > 0; i--) {
                System.out.println("Thread: " + threadName + ", " + i);
                // 让线程睡眠一会
                Thread.sleep(50);
             }
          }catch (InterruptedException e) {
             System.out.println("Thread " +  threadName + " interrupted.");
          }
          System.out.println("Thread " +  threadName + " exiting.");
       }
       
       public void start () {
          System.out.println("Starting " +  threadName );
          if (t == null) {
             t = new Thread (this, threadName);
             t.start ();
          }
       }
    }
     
    public class TestThread {
     
       public static void main(String args[]) {
          RunnableDemo R1 = new RunnableDemo( "Thread-1");
          R1.start();
          
          RunnableDemo R2 = new RunnableDemo( "Thread-2");
          R2.start();
       }   
    }
    

      

    编译以上程序运行结果如下:

    Creating Thread-1
    Starting Thread-1
    Creating Thread-2
    Starting Thread-2
    Running Thread-1
    Thread: Thread-1, 4
    Running Thread-2
    Thread: Thread-2, 4
    Thread: Thread-1, 3
    Thread: Thread-2, 3
    Thread: Thread-1, 2
    Thread: Thread-2, 2
    Thread: Thread-1, 1
    Thread: Thread-2, 1
    Thread Thread-1 exiting.
    Thread Thread-2 exiting.

    -----------------------------------------------------------------------------------------

    class RunnableDemo implements Runnable
    {
        private Thread t;
        private String threadName;
    
        RunnableDemo( String name)
        {
            threadName = name;
            System.out.println("Creating " +  threadName );
        }
    
        public void start ()
        {
            System.out.println("Starting " +  threadName );
            if (t == null)
            {
                t = new Thread (this, threadName);
                t.start ();
            }
        }
    
        public void run()
        {
            System.out.println("Running " +  threadName );
            try {
                for(int i = 4; i > 0; i--)
                {
                    System.out.println("Thread: " + threadName + ", " + i);
    
                    Thread.sleep(50);
                }
            }catch (InterruptedException e)
            {
                System.out.println("Thread " +  threadName + " interrupted.");
            }
            System.out.println("Thread " +  threadName + " exiting.");
        }
    
    }
    
    public class TestThread
    {
        public static void main(String args[])
        {
            RunnableDemo R1 = new RunnableDemo( "Thread-1");
            R1.start();
    
            RunnableDemo R2 = new RunnableDemo( "Thread-2");
            R2.start();
        }
    }
    

      

    下午 10:56:13: Executing task 'TestThread.main()'...

    Starting Gradle Daemon...
    Gradle Daemon started in 8 s 662 ms
    > Task :compileJava
    > Task :processResources NO-SOURCE
    > Task :classes

    > Task :TestThread.main()

    Creating Thread-1
    Starting Thread-1
    Creating Thread-2
    Starting Thread-2
    Running Thread-1
    Thread: Thread-1, 4
    Running Thread-2
    Thread: Thread-2, 4
    Thread: Thread-1, 3
    Thread: Thread-2, 3
    Thread: Thread-2, 2
    Thread: Thread-1, 2
    Thread: Thread-1, 1
    Thread: Thread-2, 1
    Thread Thread-2 exiting.
    Thread Thread-1 exiting.

    BUILD SUCCESSFUL in 26s
    2 actionable tasks: 2 executed
    下午 10:56:54: Task execution finished 'TestThread.main()'.

    =================================================================

    =================================================================

    通过继承Thread来创建线程

    创建一个线程的第二种方法是创建一个新的类,该类继承 Thread 类,然后创建一个该类的实例。

    继承类必须重写 run() 方法,该方法是新线程的入口点。它也必须调用 start() 方法才能执行。

    该方法尽管被列为一种多线程实现方式,但是本质上也是实现了 Runnable 接口的一个实例。

    示例:

    class ThreadDemo extends Thread {
       private Thread t;
       private String threadName;
       
       ThreadDemo( String name) {
          threadName = name;
          System.out.println("Creating " +  threadName );
       }
       
       public void run() {
          System.out.println("Running " +  threadName );
          try {
             for(int i = 4; i > 0; i--) {
                System.out.println("Thread: " + threadName + ", " + i);
                // 让线程睡眠一会
                Thread.sleep(50);
             }
          }catch (InterruptedException e) {
             System.out.println("Thread " +  threadName + " interrupted.");
          }
          System.out.println("Thread " +  threadName + " exiting.");
       }
       
       public void start () {
          System.out.println("Starting " +  threadName );
          if (t == null) {
             t = new Thread (this, threadName);
             t.start ();
          }
       }
    }
     
    public class TestThread {
     
       public static void main(String args[]) {
          ThreadDemo T1 = new ThreadDemo( "Thread-1");
          T1.start();
          
          ThreadDemo T2 = new ThreadDemo( "Thread-2");
          T2.start();
       }   
    }
    

      

    编译以上程序运行结果如下:

    Creating Thread-1
    Starting Thread-1
    Creating Thread-2
    Starting Thread-2
    Running Thread-1
    Thread: Thread-1, 4
    Running Thread-2
    Thread: Thread-2, 4
    Thread: Thread-1, 3
    Thread: Thread-2, 3
    Thread: Thread-1, 2
    Thread: Thread-2, 2
    Thread: Thread-1, 1
    Thread: Thread-2, 1
    Thread Thread-1 exiting.
    Thread Thread-2 exiting.

    ------------------------------------------------------------------------------------

    class ThreadDemo extends Thread {
        private Thread t;
        private String threadName;
    
        ThreadDemo( String name)
        {
            threadName = name;
            System.out.println("Creating " +  threadName );
        }
    
        public void start ()
        {
            System.out.println("Starting " +  threadName );
            if (t == null)
            {
                t = new Thread (this, threadName);
                t.start ();
            }
        }
    
        public void run()
        {
            System.out.println("Running " +  threadName );
            try {
                for(int i = 4; i > 0; i--)
                {
                    System.out.println("Thread: " + threadName + ", " + i);
                    Thread.sleep(50);
                }
            }catch (InterruptedException e)
            {
                System.out.println("Thread " +  threadName + " interrupted.");
            }
            System.out.println("Thread " +  threadName + " exiting.");
        }
    
    }
    
    public class TestThread
    {
    
        public static void main(String args[])
        {
            ThreadDemo T1 = new ThreadDemo( "Thread-1");
            T1.start();
    
            ThreadDemo T2 = new ThreadDemo( "Thread-2");
            T2.start();
        }
    }
    

      

    下午 11:00:23: Executing task 'TestThread.main()'...

    > Task :compileJava
    > Task :processResources NO-SOURCE
    > Task :classes

    > Task :TestThread.main()

    Creating Thread-1
    Starting Thread-1
    Creating Thread-2
    Starting Thread-2
    Running Thread-1
    Thread: Thread-1, 4
    Running Thread-2
    Thread: Thread-2, 4
    Thread: Thread-2, 3
    Thread: Thread-1, 3
    Thread: Thread-2, 2
    Thread: Thread-1, 2
    Thread: Thread-1, 1
    Thread: Thread-2, 1
    Thread Thread-2 exiting.
    Thread Thread-1 exiting.

    BUILD SUCCESSFUL in 2s
    2 actionable tasks: 2 executed
    下午 11:00:26: Task execution finished 'TestThread.main()'.

    --------------------------------------------------------------------------------------------------------

    Thread 方法

    下表列出了Thread类的一些重要方法:

    序号方法描述
    1 public void start()
    使该线程开始执行;Java 虚拟机调用该线程的 run 方法。
    2 public void run()
    如果该线程是使用独立的 Runnable 运行对象构造的,则调用该 Runnable 对象的 run 方法;否则,该方法不执行任何操作并返回。
    3 public final void setName(String name)
    改变线程名称,使之与参数 name 相同。
    4 public final void setPriority(int priority)
     更改线程的优先级。
    5 public final void setDaemon(boolean on)
    将该线程标记为守护线程或用户线程。
    6 public final void join(long millisec)
    等待该线程终止的时间最长为 millis 毫秒。
    7 public void interrupt()
    中断线程。
    8 public final boolean isAlive()
    测试线程是否处于活动状态。

    上述方法是被 Thread 对象调用的,下面表格的方法是 Thread 类的静态方法。

    序号方法描述
    1 public static void yield()
    暂停当前正在执行的线程对象,并执行其他线程。
    2 public static void sleep(long millisec)
    在指定的毫秒数内让当前正在执行的线程休眠(暂停执行),此操作受到系统计时器和调度程序精度和准确性的影响。
    3 public static boolean holdsLock(Object x)
    当且仅当当前线程在指定的对象上保持监视器锁时,才返回 true。
    4 public static Thread currentThread()
    返回对当前正在执行的线程对象的引用。
    5 public static void dumpStack()
    将当前线程的堆栈跟踪打印至标准错误流。

    ====================================================

    通过 Callable 和 Future 创建线程

    • 1. 创建 Callable 接口的实现类,并实现 call() 方法,该 call() 方法将作为线程执行体,并且有返回值。

    • 2. 创建 Callable 实现类的实例,使用 FutureTask 类来包装 Callable 对象,该 FutureTask 对象封装了该 Callable 对象的 call() 方法的返回值。

    • 3. 使用 FutureTask 对象作为 Thread 对象的 target 创建并启动新线程。

    • 4. 调用 FutureTask 对象的 get() 方法来获得子线程执行结束后的返回值。

    示例:

    public class CallableThreadTest implements Callable<Integer> {
        public static void main(String[] args)  
        {  
            CallableThreadTest ctt = new CallableThreadTest();  
            FutureTask<Integer> ft = new FutureTask<>(ctt);  
            for(int i = 0;i < 100;i++)  
            {  
                System.out.println(Thread.currentThread().getName()+" 的循环变量i的值"+i);  
                if(i==20)  
                {  
                    new Thread(ft,"有返回值的线程").start();  
                }  
            }  
            try  
            {  
                System.out.println("子线程的返回值:"+ft.get());  
            } catch (InterruptedException e)  
            {  
                e.printStackTrace();  
            } catch (ExecutionException e)  
            {  
                e.printStackTrace();  
            }  
      
        }
        @Override  
        public Integer call() throws Exception  
        {  
            int i = 0;  
            for(;i<100;i++)  
            {  
                System.out.println(Thread.currentThread().getName()+" "+i);  
            }  
            return i;  
        }  
    }
    

      

    --------------------------------------------------------------

    import java.util.concurrent.Callable;
    import java.util.concurrent.ExecutionException;
    import java.util.concurrent.FutureTask;
    
    public class CallableThreadTest implements Callable<Integer>
    {
        @Override
        public Integer call() throws Exception
        {
            int i = 0;
    
            for(;i<100;i++)
            {
                System.out.println(Thread.currentThread().getName()+" "+ i);
            }
    
            return i;
        }
    
        public static void main(String[] args)
        {
            CallableThreadTest ctt = new CallableThreadTest();
            FutureTask<Integer> ft = new FutureTask<>(ctt);
    
            for(int i = 0;i < 100;i++)
            {
                System.out.println(Thread.currentThread().getName()+"i====="+i);
    
                if(i==20)
                {
                    new Thread(ft,"you--return:  ").start();
                }
            }
    
            try
            {
                System.out.println("zi--return:  "+ft.get());
            } catch (InterruptedException e)
            {
                e.printStackTrace();
            } catch (ExecutionException e)
            {
                e.printStackTrace();
            }
    
        }
    
    }
    

      

    下午 11:09:54: Executing task 'CallableThreadTest.main()'...

    > Task :compileJava
    > Task :processResources NO-SOURCE
    > Task :classes

    > Task :CallableThreadTest.main()

    maini=====0
    maini=====1
    maini=====2
    maini=====3
    maini=====4
    maini=====5
    maini=====6
    maini=====7
    maini=====8
    maini=====9
    maini=====10
    maini=====11
    maini=====12
    maini=====13
    maini=====14
    maini=====15
    maini=====16
    maini=====17
    maini=====18
    maini=====19
    maini=====20
    maini=====21
    maini=====22
    maini=====23
    maini=====24
    maini=====25
    maini=====26
    maini=====27
    maini=====28
    maini=====29
    maini=====30
    maini=====31
    maini=====32
    maini=====33
    maini=====34
    maini=====35
    maini=====36
    maini=====37
    maini=====38
    maini=====39
    maini=====40
    maini=====41
    maini=====42
    maini=====43
    maini=====44
    maini=====45
    maini=====46
    maini=====47
    maini=====48
    maini=====49
    maini=====50
    maini=====51
    maini=====52
    maini=====53
    you--return: 0
    maini=====54
    you--return: 1
    you--return: 2
    you--return: 3
    you--return: 4
    you--return: 5
    you--return: 6
    you--return: 7
    you--return: 8
    you--return: 9
    you--return: 10
    you--return: 11
    you--return: 12
    you--return: 13
    you--return: 14
    you--return: 15
    you--return: 16
    you--return: 17
    you--return: 18
    you--return: 19
    you--return: 20
    maini=====55
    you--return: 21
    maini=====56
    you--return: 22
    maini=====57
    maini=====58
    maini=====59
    maini=====60
    maini=====61
    maini=====62
    maini=====63
    maini=====64
    maini=====65
    maini=====66
    maini=====67
    maini=====68
    maini=====69
    maini=====70
    maini=====71
    maini=====72
    maini=====73
    you--return: 23
    you--return: 24
    you--return: 25
    you--return: 26
    you--return: 27
    you--return: 28
    you--return: 29
    you--return: 30
    you--return: 31
    you--return: 32
    you--return: 33
    you--return: 34
    you--return: 35
    you--return: 36
    you--return: 37
    you--return: 38
    you--return: 39
    you--return: 40
    you--return: 41
    you--return: 42
    you--return: 43
    you--return: 44
    you--return: 45
    you--return: 46
    you--return: 47
    you--return: 48
    you--return: 49
    you--return: 50
    you--return: 51
    you--return: 52
    you--return: 53
    you--return: 54
    you--return: 55
    you--return: 56
    you--return: 57
    you--return: 58
    you--return: 59
    you--return: 60
    you--return: 61
    you--return: 62
    you--return: 63
    you--return: 64
    you--return: 65
    you--return: 66
    you--return: 67
    you--return: 68
    you--return: 69
    you--return: 70
    you--return: 71
    you--return: 72
    you--return: 73
    you--return: 74
    you--return: 75
    you--return: 76
    you--return: 77
    you--return: 78
    you--return: 79
    you--return: 80
    you--return: 81
    you--return: 82
    you--return: 83
    you--return: 84
    you--return: 85
    you--return: 86
    you--return: 87
    you--return: 88
    you--return: 89
    you--return: 90
    you--return: 91
    you--return: 92
    you--return: 93
    you--return: 94
    you--return: 95
    you--return: 96
    you--return: 97
    you--return: 98
    you--return: 99
    maini=====74
    maini=====75
    maini=====76
    maini=====77
    maini=====78
    maini=====79
    maini=====80
    maini=====81
    maini=====82
    maini=====83
    maini=====84
    maini=====85
    maini=====86
    maini=====87
    maini=====88
    maini=====89
    maini=====90
    maini=====91
    maini=====92
    maini=====93
    maini=====94
    maini=====95
    maini=====96
    maini=====97
    maini=====98
    maini=====99
    zi--return: 100

    BUILD SUCCESSFUL in 532ms
    2 actionable tasks: 2 executed
    下午 11:09:55: Task execution finished 'CallableThreadTest.main()'.

    ====================================================================

    创建线程的三种方式的对比

    • 1. 采用实现 Runnable、Callable 接口的方式创建多线程时,线程类只是实现了 Runnable 接口或 Callable 接口,还可以继承其他类。

    • 2. 使用继承 Thread 类的方式创建多线程时,编写简单,如果需要访问当前线程,则无需使用 Thread.currentThread() 方法,直接使用 this 即可获得当前线程。


    线程的几个主要概念

    在多线程编程时,你需要了解以下几个概念:

    • 线程同步
    • 线程间通信
    • 线程死锁
    • 线程控制:挂起、停止和恢复

    多线程的使用

    有效利用多线程的关键是理解程序是并发执行而不是串行执行的。例如:程序中有两个子系统需要并发执行,这时候就需要利用多线程编程。

    通过对多线程的使用,可以编写出非常高效的程序。不过请注意,如果你创建太多的线程,程序执行的效率实际上是降低了,而不是提升了。

    请记住,上下文的切换开销也很重要,如果你创建了太多的线程,CPU 花费在上下文的切换的时间将多于执行程序的时间!

  • 相关阅读:
    微博回调接口
    vue获取微博授权URL
    生成微博授权URL接口
    微博账号注册
    微博三方登录原理讲解
    使用celery异步发送短信
    celery配置与基本使用
    友情链接
    Linux无线网络设置--wpa_supplicant的使用
    wpa_supplicant介绍与使用
  • 原文地址:https://www.cnblogs.com/xiaobaibailongma/p/16065106.html
Copyright © 2020-2023  润新知