共计 954 个字符,预计需要花费 3 分钟才能阅读完成。
乐观锁是一种乐观地认为并发访问不会发生冲突的锁机制,它适用于读多写少的场景。在 Java 中,可以使用 AtomicInteger 类来实现乐观锁。
下面是一个简单的示例代码,演示了如何使用乐观锁实现多线程并发访问共享变量的功能:
import java.util.concurrent.atomic.AtomicInteger;
public class OptimisticLockExample {private static AtomicInteger counter = new AtomicInteger(0);
public static void main(String[] args) {Thread thread1 = new Thread(new IncrementTask());
Thread thread2 = new Thread(new IncrementTask());
thread1.start();
thread2.start();
try {// 等待线程执行完成
thread1.join();
thread2.join();} catch (InterruptedException e) {e.printStackTrace();
}
System.out.println("Counter: " + counter);
}
static class IncrementTask implements Runnable {@Override
public void run() {int oldValue, newValue;
do {oldValue = counter.get();
newValue = oldValue + 1;
} while (!counter.compareAndSet(oldValue, newValue));
}
}
}
在上面的代码中,我们使用 AtomicInteger 类来定义一个共享变量 counter。在每个线程的 run 方法中,我们通过循环读取和更新 counter 的值,直到成功执行 compareAndSet 方法将新值写入 counter 中。这样可以确保多个线程并发修改 counter 时不会出现冲突。
需要注意的是,乐观锁适用于读多写少的场景,如果并发写操作非常频繁,乐观锁的性能可能会受到影响。在这种情况下,可以考虑使用悲观锁来保证数据的一致性。
丸趣 TV 网 – 提供最优质的资源集合!
正文完