首页
Java面试
PHP面试
经验笔记
在线工具
首页
在线工具
Java中的读写锁和应用场景
ReentrantLock锁比较读写锁
C语言 在线运行
C++ 在线运行
Java 在线运行
PHP 在线运行
Python 在线运行
Python3 在线运行
Nodejs 在线运行
Ruby 在线运行
Perl 在线运行
Go 在线运行
R语言 在线运行
Lua 在线运行
C# 在线运行
结果显示HTML
清空
点击运行
import java.util.ArrayList; import java.util.Date; import java.util.concurrent.locks.ReentrantLock; public class Test2{ public static long getTimeStamp(){ Date date = new Date(); long timestamp = date.getTime();//返回13位时间戳 return timestamp; } public static void main(String[] args) throws InterruptedException { RWArrayList2 rwArrayList = new RWArrayList2(); Thread t1 = new Thread(new Runnable() { @Override public void run() { //添加1000个数 for (int i=0; i<10; i++) { rwArrayList.add(i); } } }); Thread t2 = new Thread(new Runnable() { @Override public void run() { //读 long time1 = getTimeStamp(); for (int i=0; i
{ private ArrayList
list = new ArrayList
(); ReentrantLock lock = new ReentrantLock(); public void add(E element) { try { lock.lock(); list.add(element); } finally { lock.unlock(); } } public void removeLast() { try { lock.lock(); if(list.size()!=0){ list.remove(list.size() - 1); } } finally { lock.unlock(); } } public void set(int index, E element) { try { lock.lock(); list.set(index, element); } finally { lock.unlock(); } } public int size() { try { // 读锁 lock.lock(); return list.size(); } finally { lock.unlock(); } } public E get(int index) { try { // 读锁 lock.lock(); try { Thread.sleep(100); } catch (InterruptedException e) { throw new RuntimeException(e); } return list.get(index); } finally { lock.unlock(); } } }
运行结果
ReentrantLock锁比较读写锁在线测试,这是一个简单方便的Java在线运行工具,支持在线编译、在线调试和在线结果的实时反馈。