在Java中,synchronized关键字用于控制多线程对共享资源的访问,以保持数据的一致性和完整性。synchronized方法可以确保在同一时刻只有一个线程能够执行该方法。要编写synchronized方法,只需在方法声明前添加synchronized关键字即可。
下面是一个简单的示例:
public class Counter { private int count; // 使用synchronized关键字声明一个同步方法 public synchronized void increment() { count++; } public synchronized void decrement() { count--; } public synchronized int getCount() { return count; } }
在这个示例中,我们有一个名为Counter的类,它包含一个私有整数变量count。我们使用synchronized关键字声明了三个方法:increment()、decrement()和getCount()。这些方法可以确保在同一时刻只有一个线程能够访问和修改count变量。