Java synchronized 关键字
示例
使用 synchronized
修饰符来防止线程之间的竞争条件
public class Main implements Runnable {
public static int a, b;
public static void main(String[] args) {
a = 100;
b = 100;
// Check the total amount shared between a and b before the transfers
System.out.println("Total before: " + (a + b));
// Run threads which will transfer amounts between a and b
Thread thread1 = new Thread(new Main());
Thread thread2 = new Thread(new Main());
thread1.start();
thread2.start();
// Wait for the threads to finish running
try {
thread1.join();
thread2.join();
} catch (InterruptedException e) {
e.printStackTrace();
}
// Check the total amount shared between a and b after the transfers
// It should be the same amount as before
System.out.println("Total after: " + (a + b));
}
public void run() {
for (int i = 0; i < 10000000; i++) {
transfer();
}
}
public static synchronized void transfer() {
// Choose a random amount to transfer
int amount = (int) (5.0 * Math.random());
// Transfer between a and b
if (a > b) {
a -= amount;
b += amount;
} else {
a += amount;
b -= amount;
}
}
}
定义和用法
The synchronized
keyword 是一个修饰符,它锁定一个方法,以便一次只有一个线程可以使用它。这可以防止由线程之间的竞争条件引起的问题。
在上面的示例中,从 transfer()
方法中删除 synchronized
关键字可能会导致 a
和 b
的值在操作之间被另一个线程修改。这将导致两个变量之间的总量发生变化。
相关页面
在我们的 Java 修饰符教程 中了解更多关于修饰符的信息。
在我们的 Java 线程教程 中了解更多关于线程的信息。