转载自此
- A java thread is an execution context or a lightweight process. It is a single sequential flow of control within a program. Programmer may use java thread mechanism to execute multiple tasks at the same time.
-
Thread class and run() Method
- Basic support for threads is in the java.lang.Thread class. It provides a thread API and all the generic behavior for threads. These behaviors include starting, sleeping, running, yielding, and having a priority.
- The run() method gives a thread something to do. Its code should implement the thread's running behavior.
There are two ways of creating a customized thread:- Sub classing java.lang.Thread and Overriding run() method.
- Implementing the java.lang.Runnable Interface.
Thread Scheduling
- When we say that threads are running concurrently, in practice it may not be so. On a computer with single CPU, threads actually run one at a time giving an illusion of concurrency.
- The execution of multiple threads on a single CPU based on some algorithm is called thread scheduling.
- Thread scheduler maintains a pool of all the ready-to-run threads. Based on fixed priority algorithm, it allocates free CPU to one of these threads.
The Life Cycle of a Thread
The following diagram illustrates the various states that a Java thread can be in at any point during its life and which method calls cause a transition to another state.
-
Ready-to-run
A thread starts its life cycle with a call to start(). For exampleMyThread aThread = new MyThread(); aThread.start();
A call to start() will not immediately start thread's execution but rather will move it to pool of threads waiting for their turn to be picked for execution. The thread scheduler picks one of the ready-to-run threads based on thread priorities. -
Running
The thread code is being actively executed by the processor. It runs until it is swapped out, becomes blocked, or voluntarily give up its turn with this static methodThread.yield();
Please note that yield() is a static method. Even if it is called on any thread object, it causes the currently executing thread to give up the CPU. -
Waiting
A call to java.lang.Object's wait() method causes the current thread object to wait. The thread remains in "Waiting" state until some another thread invokes notify() or the notifyAll() method of this object. The current thread must own this object's monitor for calling the wait(). -
Sleeping
Java thread may be forced to sleep (suspended) for some predefined time.Thread.sleep(milliseconds); Thread.sleep(milliseconds, nanoseconds);
Please note that static method sleep() only guarantees that the thread will sleep for predefined time and be running some time after the predefined time has been elapsed.
For example, a call to sleep(60) will cause the currently executing thread to sleep for 60 milliseconds. This thread will be in ready-to-run state after that. It will be in "Running" state only when the scheduler will pick it for execution. Thus we can only say that the thread will run some time after 60 milliseconds. -
Blocked on I/O.
A java thread may enter this state while waiting for data from the IO device. The thread will move to Ready-to-Run after I/O condition changes (such as reading a byte of data). -
Blocked on Synchronization.
A java thread may enter this state while waiting for object lock. The thread will move to Ready-to-Run when a lock is acquired. -
Dead
A java thread may enter this state when it is finished working. It may also enter this state if the thread is terminated by an unrecoverable error condition.
Thread Synchronization
Problems may occur when two threads are trying to access/modify the same object. To prevent such problems, Java uses monitors and the synchronized keyword to control access to an object by a thread.
-
Monitor
- Monitor is any class with synchronized code in it.
- Monitor controls its client threads using, wait() and notify() ( or notifyAll() ) methods.
- wait() and notify() methods must be called in synchronized code.
- Monitor asks client threads to wait if it is unavailable.
- Normally a call to wait() is placed in while loop. The condition of while loop generally tests the availability of monitor. After waiting, thread resumes execution from the point it left.
-
Synchronized code and Locks
-
Object lock
Each Object has a lock. This lock can be controlled by at most one thread at time. Lock controls the access to the synchronized code. - When an executing thread encounters a synchronized statement, it goes in blocked state and waits until it acquires the object lock. After that, it executes the code block and then releases the lock. While the executing thread owns the lock, no other thread can acquire the lock. Thus the locks and synchronization mechanism ensures proper exceution of code in multiple threading.
-
Object lock
Thread Priority
A thread's priority is specified with an integer from 1 (the lowest) to 10 (the highest), Constants Thread.MIN_PRIORITY and Thread.MAX_PRIORITY can also be used. By default, the setPriority() method sets the thread priority to 5, which is the Thread.NORM_PRIORITY.
Thread aThread = Thread.currentThread(); int currentPriority; currentPriority = aThread.getPriority(); aThread.setPriority( currentPriority + 1 );
Setting priorities may not always have the desired effect because prioritization schemes may be implemented differently on different platforms. However, if you cannot resist messing with priorities, use higher priorities for threads that frequently block (sleeping or waiting for I/O). Use medium to low-priority for CPU-intensive threads to avoid hogging the processor down.
Thread Deadlock
In multiple threading, following problems may occur.
- Deadlock or deadly embrace occurs when two or more threads are trying to gain control of the same object, and each one has a lock on another resource that they need in order to proceed.
- For example, When thread A waiting for lock on Object P while holding the lock on Object Q and at the same time, thread B holding a lock on Object P and waiting for lock on Object Q, deadlock occurs.
- Please note that if the thread is holding a lock and went to a sleeping state, it does not loose the lock. However, when thread goes in blocked state, it normally releases the lock. This eliminates the potential of deadlocking threads.
- Java does not provide any mechanisms for detection or control of deadlock situations, so the programmer is responsible for avoiding them.
相关推荐
4)....Fixed: ThreadID = 0 in StandardEurekaNotify 5)....Fixed: Dialog auto-close timer may reset without user input 6)....Fixed: Possible hang when quickly loading/unloading EurekaLog-enabled DLL 7).....
The communication in each instance of MBAXP runs in its own thread. That means: Your program does not stop responding while waiting for Modbus transactions to finish. You can communicate with multiple...
(thanks to Don Higgins).19/12/971.4.1- Fixed a bug that send double ‘<‘ and ‘>‘ (ie. <<ser@dom.com>>) when the full user name is used. Check the new SMTP demo. Thanks to Serge Wagener for locate ...
- BaseTerm sample queue status dialog made non-modal and auto-refreshing. - Other minor presentational improvements to BaseTerm sample. - Corrected bugs which caused occasional crashes on port ...
Status ====== This is a shareware program. This means that you need to buy it if you would like to continue using it after the evaluation period. Installation ============ 1) Uninstall any previous ...
PEP 489: Multi-phase extension module initialization Other Language Changes New Modules typing zipapp Improved Modules argparse asyncio bz2 cgi cmath code collections collections.abc ...
在数据库管理领域,多源复制(Multi-Source Replication)是一种高级复制技术,它允许一个或多个主服务器将数据复制到同一个从服务器上。这种架构通常用于满足特定的应用场景需求,如数据整合、负载均衡等。本文档将...
pthread_join(thread_id, &exit_status); ``` 5. **线程退出**: 当线程完成任务或需要退出时,调用`pthread_exit()`。 二、多线程的优点与挑战 1. **优点**: - 资源利用率高:线程间共享内存,减少了内存开销...
FastReport.v4.15 for.Delphi.BCB.Full.Source企业版含ClientServer中文修正版支持Delphi 4-XE5 and C++Builder 6-XE5. D2010以上版本(D14_D19)安装必读 delphi2010以上版本(D14_D19)使用者安装时,请将res\frccD14_...
5.4 Stopping and starting multi-thread programs . . . . . . . . . . . . . 6 Examining the Stack . . . . . . . . . . . . . . . . . . . . . . 51 6.1 6.2 6.3 6.4 6.5 6.6 7 Stack frames . . . . . . . . . ...
- 使用`SELECT ARCHIVED_THREAD#, ARCHIVED_SEQ#, APPLIED_THREAD#, APPLIED_SEQ# FROM V$ARCHIVE_DEST_STATUS`查询已归档和已应用的日志序列号,确保数据的一致性。 五、备库归档日志查看 - 通过`V$ARCHIVED_LOG`...
1.3 Changes from the V850E2v3 Architecture ............................................................................4 CHAPTER 2 PROCESSOR MODEL ........................................................
定期检查Apache服务器的状态,使用如 `mod_status` 等模块可以帮助监控服务器的健康状况和性能指标。 综上所述,Apache 2.2 的安装和配置涉及到多个方面,包括源码编译、模块选择、MPM配置以及安全性和性能优化等...
At the end of the book, you will learn how to obtain information about the status of some of the most useful components of the Java Concurrency API and how to test concurrent applications using ...
Added a statusbar to the hexview in memoryview Pointerscan for value scans now add the results to the overflow queue Opening a file and changing bytes do not change them to the file anymore (you need ...
- Includes four GPU meters to monitor up to 4 discrete GPUs for multi-GPU setups - Able to be scaled to any size Network Meter - Local and global IP addresses - View your location based on your ...
4. **监控与故障恢复**:使用`SHOW SLAVE STATUS\G`命令可以查看复制状态,包括延迟情况和错误信息。当主服务器出现故障时,可以将一个从服务器提升为主服务器,继续提供服务。 MySQL Replication还支持主主复制,...
Uses the Running Operation as the Main Thread Difficulty in understanding an operating system (OS) lies not in the technical aspects, but in the complex relationships inside the operating ...
根据`/proc/<pid>/status`文件中的`State`字段以及常用的`ps`命令输出,Linux进程主要有以下几种状态: 1. **D (Uninterruptible Sleep)**:不可中断睡眠状态。通常发生在进程等待某种I/O操作完成时(如磁盘读写)...
int pthread_create(pthread_t *thread, const pthread_attr_t *attr, void *(*start_routine)(void *), void *arg); ``` - **线程终止和栈清理**: 线程可以通过 `pthread_exit` 终止。 ```c void pthread_...