Java 中的同步是一种 Java 功能,它限制多个线程同时尝试访问公共共享资源。这里的共享资源是指外部文件内容、类变量或数据库记录。
开始您的免费软件开发课程
网络开发、编程语言、软件测试及其他
同步在多线程编程中被广泛使用。 “Synchronized”这个关键字使您的代码能够仅允许单个线程对其进行操作,而在此期间不会受到任何其他线程的干扰。
当两个或多个线程并行运行时,它们倾向于在该时间点访问和修改共享资源。线程调度算法决定线程执行的顺序。
因此,由于线程调度程序单独控制线程,因此无法预测线程的执行顺序。这会影响代码的输出并导致输出不一致。由于多个线程相互竞争来完成操作,因此该条件称为“竞争条件”。
例如,让我们考虑以下代码:
class Modify: package JavaConcepts; public class Modify implements Runnable{ private int myVar=0; public int getMyVar() { return myVar; } public void setMyVar(int myVar) { this.myVar = myVar; } public void increment() { myVar++; } @Override public void run() { // TODO Auto-generated method stub this.increment(); System.out.println("Current thread being executed "+ Thread.currentThread().getName() + "Current Thread value " + this.getMyVar()); } } class RaceCondition: package JavaConcepts; public class RaceCondition { public static void main(String[] args) { Modify mObj = new Modify(); Thread t1 = new Thread(mObj, "thread 1"); Thread t2 = new Thread(mObj, "thread 2"); Thread t3 = new Thread(mObj, "thread 3"); t1.start(); t2.start(); t3.start(); } }
连续运行上述代码,输出将如下:
我们的输入1:
当前正在执行的线程 线程1 当前线程值3
当前正在执行的线程 线程3 当前线程值2
当前正在执行的线程 线程2 当前线程值3
输出2:
当前正在执行的线程 thread 3 Current Thread value 3
当前正在执行的线程 线程2 当前线程值3
当前正在执行的线程 线程1 当前线程值3
输出3:
当前正在执行的线程 线程2 当前线程值3
当前正在执行的线程 线程1 当前线程值3
当前正在执行的线程 thread 3 Current Thread value 3
输出4:
当前正在执行的线程 线程1 当前线程值2
当前正在执行的线程 thread 3 Current Thread value 3
当前正在执行的线程 thread 2 Current Thread value 2
本例的输出为:
当前正在执行的线程thread 1 Current Thread value 1
这意味着当单个线程运行时,输出是预期的。但是,当多个线程运行时,每个线程都会修改该值。因此,需要将处理共享资源的线程数量限制为一次一个线程。这是通过使用同步来实现的。
Let us synchronize our previous example by synchronizing the code inside the run method using the synchronized block in class “Modify” as below:
class Modify: package JavaConcepts; public class Modify implements Runnable{ private int myVar=0; public int getMyVar() { return myVar; } public void setMyVar(int myVar) { this.myVar = myVar; } public void increment() { myVar++; } @Override public void run() { // TODO Auto-generated method stub synchronized(this) { this.increment(); System.out.println("Current thread being executed " + Thread.currentThread().getName() + " Current Thread value " + this.getMyVar()); } } }
The code for the class “RaceCondition” remains the same. Now on running the code, the output is as follows:
Output1:
The current thread being executed thread 1 Current Thread value 1
The current thread being executed thread 2 Current Thread value 2
The current thread being executed thread 3 Current Thread value 3
Output2:
The current thread being executed thread 1 Current Thread value 1
The current thread being executed thread 3 Current Thread value 2
The current thread being executed thread 2 Current Thread value 3
Notice that our code is providing the expected output. Here every thread is incrementing the value by 1 for the variable “myVar” (in class “Modify”).
Note: Synchronization is required when multiple threads are operating on the same object. If multiple threads are operating on multiple objects, then synchronization is not required.For Example, let us modify the code in the class “RaceCondition” as below and work with the previously unsynchronized class “Modify”.
package JavaConcepts; public class RaceCondition { public static void main(String[] args) { Modify mObj = new Modify(); Modify mObj1 = new Modify(); Modify mObj2 = new Modify(); Thread t1 = new Thread(mObj, "thread 1"); Thread t2 = new Thread(mObj1, "thread 2"); Thread t3 = new Thread(mObj2, "thread 3"); t1.start(); t2.start(); t3.start(); } }
Output:
The current thread being executed thread 1 Current Thread value 1
The current thread being executed thread 2 Current Thread value 1
The current thread being executed thread 3 Current Thread value 1
There are two types of thread synchronization, one being mutually exclusive and the other inter-thread communication.
We can make use of the “synchronized” keyword for a method, thus making it a synchronized method. Every thread that invokes the synchronized method will obtain the lock for that object and release it once its operation is completed. In the above example, we can make our “run()” method as synchronized by using the “synchronized” keyword after the access modifier.
@Override public synchronized void run() { // TODO Auto-generated method stub this.increment(); System.out.println("Current thread being executed " + Thread.currentThread().getName() + " Current Thread value " + this.getMyVar()); }
The output for this case will be:
The current thread being executed thread 1 Current Thread value 1
The current thread being executed thread 3 Current Thread value 2
The current thread being executed thread 2 Current Thread value 3
In order to synchronize static methods, one needs to acquire its class level lock. After a thread obtains the class level lock, only then it will be able to execute a static method. While a thread holds the class level lock, no other thread can execute any other static synchronized method of that class. However, the other threads can execute any other regular method or regular static method or even non-static synchronized method of that class.
For example, let us consider our “Modify” class and make changes to it by converting our “increment” method to a static synchronized method. The code changes are as below:
package JavaConcepts; public class Modify implements Runnable{ private static int myVar=0; public int getMyVar() { return myVar; } public void setMyVar(int myVar) { this.myVar = myVar; } public static synchronized void increment() { myVar++; System.out.println("Current thread being executed " + Thread.currentThread().getName() + " Current Thread value " + myVar); } @Override public void run() { // TODO Auto-generated method stub increment(); } }
One of the main disadvantages of the synchronized method is that it increases threads waiting time, impacting the performance of the code. Therefore, to synchronize only the required lines of code in place of the entire method, one needs to make use of a synchronized block. Using synchronized block reduces the waiting time of the threads and improves performance as well. In the previous example, we have already made use of synchronized block while synchronizing our code for the first time.
Example:
public void run() { // TODO Auto-generated method stub synchronized(this) { this.increment(); System.out.println("Current thread being executed " + Thread.currentThread().getName() + " Current Thread value " + this.getMyVar()); } }
For synchronized threads, inter-thread communication is an important task. Inbuilt methods that help achieve inter-thread communication for synchronized code are namely:
A thread on invoking the wait() method releases the lock on the object and goes into a waiting state. It has two method overloads:
A thread sends a signal to another thread in the waiting state by making use of the notify() method. It sends the notification to only one thread such that this thread can resume its execution. Which thread will receive the notification among all the threads in the waiting state depends on the Java Virtual Machine.
public final void notify()
When a thread invokes the notifyAll() method, every thread in its waiting state is notified. These threads will be executed one after the other based on the order decided by the Java Virtual Machine.
public final void notifyAll()
In this article, we have seen how working in a multi-threaded environment can lead to data inconsistency due to a race condition, how synchronization helps us overcome this by limiting a single thread to operate on a shared resource at a time. Also, how synchronized threads communicate with each other.
以上是Java 中的同步是什么?的详细内容。更多信息请关注PHP中文网其他相关文章!