理论:
未使用读写锁的代码:
package com.javaliao.backstage;
import java.util.HashMap;
import java.util.Map;
class Data{
private volatile Map map = new HashMap<String,Object>();
//写
public void put(String key,Object value){
System.out.println(Thread.currentThread().getName()+"/t 正在写入:"+key);
try {
Thread.sleep(300);
map.put(key,value);
System.out.println(Thread.currentThread().getName()+"/t 写入完成");
} catch (InterruptedException e) {
e.printStackTrace();
}
}
//读
public void get(String key){
System.out.println(Thread.currentThread().getName()+"/t 正在读取");
try {
Thread.sleep(300);
Object value = map.get(key);
System.out.println(Thread.currentThread().getName()+"/t 读取完成:"+value);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
public class Demo {
public static void main(String[] args) {
Data data = new Data();
//五个写的线程
for (int i = 0; i < 5; i++) {
final int tempInt = i;
new Thread(()->{
data.put(tempInt+"",tempInt+"");
},String.valueOf(i)).start();
}
//五个读的线程
for (int i = 0; i < 5; i++) {
final int tempInt = i;
new Thread(()->{
data.get(tempInt+"");
},String.valueOf(i)).start();
}
}
}
控制台:
可以看到写的操作原子性和独占性没有得到保证,0线程正在写入共享资源的时候,其他线程有写入和读取的共享资源操作,导致数据不一致。
是否可以添加Lock锁解决原子性和独占性的问题?
更多内容请见原文,原文转载自:https://blog.csdn.net/weixin_44519496/article/details/120323364
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/287924.html