Java multithreading overview

Keywords: Programming Java IntelliJ IDEA less encoding

Thread overview

Almost all operating systems support running multiple tasks at the same time. A task is usually a program, and each running program is a process. When a program is running, it may contain multiple sequential execution flows, each of which is a thread.

Threads and processes

        Almost all operating systems support the concept of process. All running tasks usually correspond to a process. When a program enters memory for running, it becomes a process. A process is a program in the running process and has certain independent performance. A process is an independent unit for resource allocation and scheduling of the system. A process contains the following three characteristics.

  1. Independence: a process is an independent entity in the system. It can have its own independent resources. Each process has its own private address space. Without the permission of the process itself, a user process cannot directly access the address space of other threads.
  2. Dynamic: the difference between a process and a program is that a program is only a static set of instructions, while a process is an active set of instructions in the system. The concept of time is added to a process. A process has its own life cycle and various states. These concepts are not available in a program.

Concurrency: multiple processes can be executed concurrently on a single processor without mutual influence. Concurrency and parallelism are two concepts. Parallelism refers to the simultaneous execution of multiple instructions on multiple processors at the same time, and the simultaneous execution of only one instruction at the same time. However, multiple process instructions are executed in rapid rotation, which makes the macro system have The effect of multiple processes executing at the same time.

Advantages of multithreading

Threads are independent and concurrent in the program. Compared with the divided process, threads in the process have less isolation. They share memory, file handle and other application states of each process.

Because the partition size of threads is smaller than that of processes, the concurrency of multi threads is high. In the process of execution, processes have independent memory units, and multiple threads share memory, which greatly improves the running efficiency of the program. Threads have higher performance than processes. This is because threads in the same process have common features. Multiple threads share the same process virtual space. The environment shared by threads includes: process code block, process public data, etc. with these shared data, threads can easily communicate with each other. In summary, threads have the following points.

  1. Memory cannot be shared between processes, but memory can be shared between threads.
  2. When the system creates a process, it needs to reallocate system resources for the process, but the cost of creating a thread is much smaller, so it is more efficient to use multithreading to achieve multitasking concurrency than multiprocessing.

Thread creation starts

The steps to create a Thread class by inheriting the Thread class are as follows:

  1. Define the subclass of the Thread class and re run() method of the class. The method body of the run() method represents the tasks that the Thread needs to complete. Therefore, the run() method is called the Thread execution body.
  2. The Thread object is created by calling an instance of the Thread subclass.
  3. Call the start() method of the thread object to start the thread.
//Create a Thread class by inheriting the Thread class
public class FirstThread extends Thread {

    private int i;

    // The method body of the run() method is the thread execution body
    @Override
    public void run() {
        for (int i = 0; i < 100; i++) {
            // When the Thread class inherits the Thread, you can directly use this to get the current Thread
            // getName() of Thread object returns the name of the current Thread
            // So you can directly use the getName() method to return the name of the current thread

            System.out.println(getName() + "  " + i);


        }

    }

    public static void main(String[] args) {
        for (int i = 0; i < 100; i++) {
            // Call the currentThread() method of Thread to get the current Thread
            System.out.println(Thread.currentThread().getName() + "   " + i);


            if (i == 20) {
                // Create first thread
                new FirstThread().start();
                // Create a second thread
                new FirstThread().start();

            }
        }
    }
}

Execution results

"D:\Program Files\Java\jdk1.8.0_151\bin\java" "-javaagent:D:\Program Files\JetBrains\IntelliJ IDEA 2017.1.4\lib\idea_rt.jar=55909:D:\Program Files\JetBrains\IntelliJ IDEA 2017.1.4\bin" -Dfile.encoding=UTF-8 -classpath "D:\Program Files\Java\jdk1.8.0_151\jre\lib\charsets.jar;D:\Program Files\Java\jdk1.8.0_151\jre\lib\deploy.jar;D:\Program Files\Java\jdk1.8.0_151\jre\lib\ext\access-bridge-64.jar;D:\Program Files\Java\jdk1.8.0_151\jre\lib\ext\cldrdata.jar;D:\Program Files\Java\jdk1.8.0_151\jre\lib\ext\dnsns.jar;D:\Program Files\Java\jdk1.8.0_151\jre\lib\ext\jaccess.jar;D:\Program Files\Java\jdk1.8.0_151\jre\lib\ext\jfxrt.jar;D:\Program Files\Java\jdk1.8.0_151\jre\lib\ext\localedata.jar;D:\Program Files\Java\jdk1.8.0_151\jre\lib\ext\nashorn.jar;D:\Program Files\Java\jdk1.8.0_151\jre\lib\ext\sunec.jar;D:\Program Files\Java\jdk1.8.0_151\jre\lib\ext\sunjce_provider.jar;D:\Program Files\Java\jdk1.8.0_151\jre\lib\ext\sunmscapi.jar;D:\Program Files\Java\jdk1.8.0_151\jre\lib\ext\sunpkcs11.jar;D:\Program Files\Java\jdk1.8.0_151\jre\lib\ext\zipfs.jar;D:\Program Files\Java\jdk1.8.0_151\jre\lib\javaws.jar;D:\Program Files\Java\jdk1.8.0_151\jre\lib\jce.jar;D:\Program Files\Java\jdk1.8.0_151\jre\lib\jfr.jar;D:\Program Files\Java\jdk1.8.0_151\jre\lib\jfxswt.jar;D:\Program Files\Java\jdk1.8.0_151\jre\lib\jsse.jar;D:\Program Files\Java\jdk1.8.0_151\jre\lib\management-agent.jar;D:\Program Files\Java\jdk1.8.0_151\jre\lib\plugin.jar;D:\Program Files\Java\jdk1.8.0_151\jre\lib\resources.jar;D:\Program Files\Java\jdk1.8.0_151\jre\lib\rt.jar;D:\github_project\Demo\javamaven\target\classes;E:\repository\org\yaml\snakeyaml\1.17\snakeyaml-1.17.jar;E:\repository\javax\validation\validation-api\1.1.0.Final\validation-api-1.1.0.Final.jar;E:\repository\com\fasterxml\jackson\core\jackson-databind\2.8.1\jackson-databind-2.8.1.jar;E:\repository\com\fasterxml\jackson\core\jackson-annotations\2.8.1\jackson-annotations-2.8.1.jar;E:\repository\com\fasterxml\jackson\core\jackson-core\2.8.1\jackson-core-2.8.1.jar;E:\repository\org\slf4j\slf4j-api\1.7.21\slf4j-api-1.7.21.jar" com.thread.FirstThread
main   0
main   1
main   2
main   3
main   4
main   5
main   6
main   7
main   8
main   9
main   10
main   11
main   12
main   13
main   14
main   15
main   16
main   17
main   18
main   19
main   20
main   21
main   22
main   23
main   24
main   25
main   26
main   27
main   28
main   29
main   30
main   31
main   32
main   33
main   34
main   35
main   36
main   37
main   38
main   39
main   40
main   41
main   42
main   43
main   44
main   45
main   46
main   47
main   48
main   49
main   50
main   51
main   52
main   53
main   54
main   55
main   56
main   57
main   58
main   59
main   60
main   61
main   62
main   63
main   64
main   65
main   66
main   67
main   68
main   69
main   70
main   71
main   72
main   73
main   74
main   75
main   76
main   77
main   78
main   79
main   80
main   81
main   82
main   83
main   84
main   85
main   86
main   87
main   88
main   89
main   90
main   91
main   92
main   93
main   94
main   95
main   96
main   97
main   98
main   99
Thread-0  0
Thread-0  1
Thread-0  2
Thread-0  3
Thread-0  4
Thread-0  5
Thread-0  6
Thread-0  7
Thread-0  8
Thread-0  9
Thread-0  10
Thread-0  11
Thread-0  12
Thread-0  13
Thread-0  14
Thread-0  15
Thread-0  16
Thread-0  17
Thread-0  18
Thread-0  19
Thread-0  20
Thread-0  21
Thread-0  22
Thread-0  23
Thread-0  24
Thread-0  25
Thread-0  26
Thread-0  27
Thread-0  28
Thread-0  29
Thread-0  30
Thread-0  31
Thread-0  32
Thread-0  33
Thread-0  34
Thread-0  35
Thread-0  36
Thread-0  37
Thread-0  38
Thread-0  39
Thread-0  40
Thread-0  41
Thread-0  42
Thread-0  43
Thread-0  44
Thread-0  45
Thread-0  46
Thread-0  47
Thread-0  48
Thread-0  49
Thread-0  50
Thread-0  51
Thread-0  52
Thread-0  53
Thread-0  54
Thread-0  55
Thread-0  56
Thread-0  57
Thread-0  58
Thread-0  59
Thread-0  60
Thread-0  61
Thread-0  62
Thread-1  0
Thread-1  1
Thread-1  2
Thread-1  3
Thread-1  4
Thread-1  5
Thread-1  6
Thread-0  63
Thread-0  64
Thread-0  65
Thread-0  66
Thread-0  67
Thread-0  68
Thread-0  69
Thread-0  70
Thread-0  71
Thread-0  72
Thread-0  73
Thread-0  74
Thread-0  75
Thread-0  76
Thread-0  77
Thread-0  78
Thread-0  79
Thread-0  80
Thread-0  81
Thread-0  82
Thread-0  83
Thread-0  84
Thread-0  85
Thread-0  86
Thread-0  87
Thread-0  88
Thread-0  89
Thread-0  90
Thread-0  91
Thread-0  92
Thread-0  93
Thread-0  94
Thread-0  95
Thread-0  96
Thread-0  97
Thread-0  98
Thread-0  99
Thread-1  7
Thread-1  8
Thread-1  9
Thread-1  10
Thread-1  11
Thread-1  12
Thread-1  13
Thread-1  14
Thread-1  15
Thread-1  16
Thread-1  17
Thread-1  18
Thread-1  19
Thread-1  20
Thread-1  21
Thread-1  22
Thread-1  23
Thread-1  24
Thread-1  25
Thread-1  26
Thread-1  27
Thread-1  28
Thread-1  29
Thread-1  30
Thread-1  31
Thread-1  32
Thread-1  33
Thread-1  34
Thread-1  35
Thread-1  36
Thread-1  37
Thread-1  38
Thread-1  39
Thread-1  40
Thread-1  41
Thread-1  42
Thread-1  43
Thread-1  44
Thread-1  45
Thread-1  46
Thread-1  47
Thread-1  48
Thread-1  49
Thread-1  50
Thread-1  51
Thread-1  52
Thread-1  53
Thread-1  54
Thread-1  55
Thread-1  56
Thread-1  57
Thread-1  58
Thread-1  59
Thread-1  60
Thread-1  61
Thread-1  62
Thread-1  63
Thread-1  64
Thread-1  65
Thread-1  66
Thread-1  67
Thread-1  68
Thread-1  69
Thread-1  70
Thread-1  71
Thread-1  72
Thread-1  73
Thread-1  74
Thread-1  75
Thread-1  76
Thread-1  77
Thread-1  78
Thread-1  79
Thread-1  80
Thread-1  81
Thread-1  82
Thread-1  83
Thread-1  84
Thread-1  85
Thread-1  86
Thread-1  87
Thread-1  88
Thread-1  89
Thread-1  90
Thread-1  91
Thread-1  92
Thread-1  93
Thread-1  94
Thread-1  95
Thread-1  96
Thread-1  97
Thread-1  98
Thread-1  99

Process finished with exit code 0

The FirstThread class of the above program inherits the Thread class and implements the Run() method, as shown in the first bold code in the program. The code execution flow in the Run() method is the task that the Thread needs to complete. The main method of the program also contains a loop. When the loop variable i is equal to 20, two new threads are created and started, Running the above program, although the above program only shows the creation and startup of two threads, there are actually three threads in the program, that is, the program explicitly creates two sub threads and one main Thread. When the Java program starts to run, the program will create at least one main Thread, and the Thread execution body of the main Thread is not determined by the Run() method, but by the main() method, mai The body of the n () method represents the Thread body of the main Thread.

Posted by jackliu97 on Mon, 04 May 2020 04:23:08 -0700