Home  >  Article  >  Java  >  what is java thread pool

what is java thread pool

爱喝马黛茶的安东尼
爱喝马黛茶的安东尼Original
2019-11-13 09:23:262366browse

what is java thread pool

There are many benefits of using a thread pool, such as saving the cost of system resources, saving time to create and destroy threads, etc. When we need to process more tasks, we can use the thread pool , there may be many users who don’t know how to use Java thread pool? Today I will share with you how to use the four thread pools in Java.

Thread pool introduction:

The thread pool is a form of multi-thread processing. Tasks are added to the queue during processing, and then automatically after the thread is created. Start these tasks. Thread pool threads are background threads. Each thread uses the default stack size, runs at the default priority, and is in a multi-threaded apartment. If a thread is idle in managed code (such as waiting for an event), the thread pool will insert another worker thread to keep all processors busy. If all thread pool threads remain busy at all times, but the queue contains pending work, the thread pool will create another worker thread after a while but the number of threads will never exceed the maximum. Threads that exceed the maximum can be queued, but they are not started until other threads have finished.

The use of four thread pools in Java:

Java provides four thread pools through Executors, which are:

newCachedThreadPool creates a cacheable thread pool. If the length of the thread pool exceeds processing needs, idle threads can be flexibly recycled. If there is no way to recycle, a new thread will be created.

newFixedThreadPool creates a fixed-length thread pool that can control the maximum number of concurrent threads. Exceeding threads will wait in the queue.

newScheduledThreadPool creates a fixed-length thread pool that supports scheduled and periodic task execution.

newSingleThreadExecutor creates a single-threaded thread pool, which will only use the only working thread to execute tasks, ensuring that all tasks are executed in the specified order (FIFO, LIFO, priority).

Many java training videos, all on the PHP Chinese website, welcome to learn online!

The above is the detailed content of what is java thread pool. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:How to synchronize JavaNext article:How to synchronize Java