This article is reprinted from the WeChat public account "Android Development Programming", the author is Android Development Programming. Please contact the Android Development Programming public account for reprinting this article. 1. Synchronized Detailed ExplanationSynchronized is a keyword in Java. When multiple threads operate shared resources together, it can ensure that only one thread can operate the shared resources at the same time, thereby achieving thread safety of shared resources. 2. Characteristics of Synchronized
3. Use of SynchronizedWhen using the Synchronized keyword, you need to keep the following points in mind: A lock can only be acquired by one thread at a time, and the thread that has not acquired the lock can only wait; Each instance has its own lock (this), and different instances do not affect each other; exception: when the lock object is *.class and the synchronized method is a static method, all objects share the same lock; The synchronized modified method will release the lock regardless of whether the method is executed normally or throws an exception. Object Lock Including method lock (the default lock object is this, the current instance object) and synchronized code block lock (self-specified lock object lock) Code block form: manually specify the lock object, which can be this or a custom lock
Output:
Method lock form: synchronized modifies ordinary methods, and the lock object defaults to this
Class Lock Including method lock (the default lock object is this, the current instance object) and synchronized code block lock (specify the lock object yourself) synchronize modifies static methods (class object of the class)
Output: I am thread Thread-0 Thread-0 ends I am thread Thread-1 Thread-1 ends Copy code synchronized modification instance method
Output: Thread 1 is ready to perform accumulation, but has not yet obtained the lock. Thread 2 is ready to perform accumulation, but has not yet obtained the lock. Thread 2 ---- Ordinary method of instance object--- Thread 2 performs accumulation operation...1st accumulation //Thread 2 gets the lock first through competition with thread 1 and enters the increase synchronization method. Thread 2 performs accumulation operation...2nd accumulation Thread 1 ---- Ordinary method of instance object--- //From here, it can be seen that when thread 2 accesses the synchronization method, thread 1 can access the non-synchronized method, but cannot access another synchronization method. Thread 2 performs accumulation operation...3rd accumulation Thread 2 performs accumulation operation...4th accumulation Thread 2 performs accumulation operation...5th accumulation Thread 2 completes the accumulation operation //Thread 2 releases the lock after performing accumulation Thread 2 is ready to execute total-1 Thread 1 performs the accumulation operation...1st accumulation //Then thread 1 gets the lock and enters the increase synchronization method to perform the accumulation Thread 1 performs the accumulation operation...2nd accumulation Thread 1 performs the accumulation operation...3rd accumulation Thread 1 performs the accumulation operation...4th accumulation Thread 1 performs the accumulation operation...5th accumulation Thread 1 completes the accumulation operation //Thread 1 will also release the lock after completing the accumulation operation, and then thread 1 and thread 2 will compete for the lock again Thread 1 prepares to execute total-1 Thread 2 executes total-1 //Thread 2 gets the lock first through competition and enters the declear method to execute the total-1 operation Thread 2 completes the execution of total-1 Thread 1 executes total-1 Thread 1 completes the execution of total-1 Copy code 4. Synchronized Implementation PrincipleLocking and releasing locksSynchronized synchronization is implemented through instructions such as monitorenter and monitorexit, which will allow the object to execute and increase or decrease its lock counter by 1. Monitorenter instruction: Each object is associated with only one monitor (lock) at a time, and a monitor can only be acquired by one thread at a time. When an object tries to acquire ownership of the Monitor lock associated with this object, one of the following three situations will occur:
monitorexit instruction: releases the ownership of the monitor. The release process is very simple, which is to reduce the monitor's counter by 1. If the counter is not 0 after the reduction, it means that the thread has just reentered and the current thread continues to hold the ownership of the lock. If the counter becomes 0, it means that the current thread no longer owns the monitor, that is, the lock is released. The relationship between objects, object monitors, synchronization queues, and execution thread states: As can be seen from the figure, any thread that accesses an Object must first obtain the Object's monitor. If the acquisition fails, the thread enters the synchronization state and the thread state becomes BLOCKED. When the Object's monitor occupant is released, the thread in the synchronization queue will have the opportunity to reacquire the monitor. Reentrancy principle: lock count counter As can be seen from the figure above, when executing the static synchronization method, there is only one monitorexit instruction, and there is no monitorenter instruction to acquire the lock. This is the reentrancy of the lock, that is, in the same lock process, the thread does not need to acquire the same lock again. Synchronized is inherently reentrant. Each object has a counter. When a thread acquires the lock of the object, the counter is incremented by one, and when the lock is released, the counter is decremented by one. Principles of ensuring visibility: memory model and happens-before rule The happens-before rule of Synchronized, that is, the monitor lock rule: unlocking the same monitor happens-before locking the monitor. public class MonitorDemo { private int a = 0; public synchronized void writer() { // 1 a++; // 2 } // 3 public synchronized void reader() { // 4 int i = a; // 5 } // 6 } Copy code The happens-before relationship is shown in the figure: In the figure, each two nodes connected by an arrow represent the happens-before relationship between them. The black ones are derived from the program order rules, and the red ones are derived from the monitor lock rules: thread A releases the lock happens-before thread B locks it. The blue ones are the happens-before relationships inferred by the program order rules and the monitor lock rules, and the happens-before relationships are further derived by the transitivity rules. Summarize
However, the essence of both is to obtain the object monitor monitor. What should I pay attention to when using Synchronized?
|
<<: iOS WeChat is updated again, and you can set video cover in Moments
>>: Three years have passed, why are foldable phones still not popular?
As the Internet traffic dividend reaches its peak...
Delaying retirement has been one of the topics th...
Looking at the APP clients on the market now, the...
In advertising, high conversion costs, small conv...
For new operators, they may have read countless e...
[[148691]] Here we briefly summarize the characte...
The most comprehensive encyclopedia of basic know...
On Toutiao , there are 50 million people who play...
Although there are more and more mobile phones in...
[[126313]] Since Google released the official ver...
This is the most comprehensive guide to applying ...
【motioner】3D software brawl|Dreamlike combos from...
Q1. My advertising has always been low in volume....
On September 14, 2018, Qutoutiao was listed on th...
[[122333]] In 2014, Google and Facebook, two glob...