Java 并发 - 概述

Java是一种多线程编程语言,这意味着我们可以使用Java开发多线程程序。 多线程程序包含两个或多个可以同时运行的部分,每个部分可以同时处理不同的任务,从而充分利用可用资源,特别是当您的计算机具有多个 CPU 时。

根据定义,多任务处理是指多个进程共享公共处理资源(例如 CPU)。 多线程将多任务处理的理念扩展到应用程序中,您可以将单个应用程序中的特定操作细分为单独的线程。 每个线程都可以并行运行。 操作系统不仅在不同的应用程序之间划分处理时间,而且还在应用程序内的每个线程之间划分处理时间。

多线程使您能够以多种活动可以在同一程序中同时进行的方式进行编写。

线程的生命周期

线程在其生命周期中经历各个阶段。 例如,一个线程诞生、启动、运行,然后消亡。 下图展示了线程的完整生命周期。

Java 线程

以下是生命周期的阶段 −

  • New − 新线程在新状态下开始其生命周期。 它保持这种状态直到程序启动线程。 它也称为天生线程

  • Runnable − 新出生的线程启动后,该线程就变得可运行。 处于这种状态的线程被认为正在执行其任务。

  • Waiting − 有时,一个线程会在等待另一个线程执行任务时转换到等待状态。 仅当另一个线程向等待线程发出继续执行的信号时,线程才会转换回可运行状态。

  • Timed Waiting − 可运行线程可以在指定的时间间隔内进入定时等待状态。 当该时间间隔到期或它正在等待的事件发生时,处于此状态的线程将转换回可运行状态。

  • Terminated (Dead) − 可运行线程在完成其任务或以其他方式终止时进入终止状态。

线程优先级

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

Java 线程优先级的范围是 MIN_PRIORITY(常量为 1)和 MAX_PRIORITY(常量为 10)之间。 默认情况下,每个线程都被赋予优先级 NORM_PRIORITY(常数为 5)。

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

通过实现可运行接口创建线程

如果您的类打算作为线程执行,那么您可以通过实现 Runnable 接口来实现这一点。 您需要遵循三个基本步骤−

步骤 1

第一步,您需要实现 Runnable 接口提供的 run() 方法。 该方法为线程提供了一个入口点,您将把完整的业务逻辑放入该方法中。 以下是 run() 方法的简单语法 −

public void run( )

步骤 2

第二步,您将使用以下构造函数实例化一个 Thread 对象 −

Thread(Runnable threadObj, String threadName);

其中,threadObj是实现Runnable接口的类的实例,threadName是为新线程指定的名称。< /p>

步骤 3

一旦创建了 Thread 对象,就可以通过调用 start() 方法来启动它,该方法会调用 run( ) 方法。 以下是 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);
            
            // Let the thread sleep for a while.
            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.

通过扩展线程类创建线程

创建线程的第二种方法是使用以下两个简单步骤创建一个扩展 Thread 类的新类。 这种方法在处理使用 Thread 类中的可用方法创建的多个线程时提供了更大的灵活性。

步骤 1

您将需要重写 Thread 类中可用的 run( ) 方法。 该方法为线程提供了一个入口点,您将把完整的业务逻辑放入该方法中。 以下是 run() 方法的简单语法 −

public void run( )

步骤 2

一旦创建了 Thread 对象,就可以通过调用 start() 方法来启动它,该方法执行对 run( ) 方法的调用。 以下是 start() 方法的简单语法 −

void start( );

示例

这里是重写前面的程序以扩展线程 −

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);
            
            // Let the thread sleep for a while.
            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.