编程正确的并发程序的关键在于对共享的,可变的状态进行访问管理。同步不仅仅用于原子操作或者划定‘临界区’,同步还需要有内存可见性,即当避免一个线程修改其他线程正在使用的对象装填,还需要确保当一个县城修改了对象的状态后,其他线程能够真正看到该对象的改变。即保证对象的安全发布。
1.可见性
public class Novisibility { private static boolean ready; private static int number; private static class ReadThread extends Thread{ public void run() { while (!ready) { Thread.yield(); System.out.println(number); } } } public static void main(String[] args){ new ReadThread().start(); ready = true; number = 43; } }
public class MutableInteger { private int value; public int getValue() { return value; } public void setValue(int value) { this.value = value; } }
public class MutableInteger { private int value; public synchronized int getValue() { return value; } public synchronized void setValue(int value) { this.value = value; } }
2.volatile
在 java 垃圾回收整理一文中,描述了jvm运行时刻内存的分配。其中有一个内存区域是jvm虚拟机栈,每一个线程运行时都有一个线程栈,
线程栈保存了线程运行时候变量值信息。当线程访问某一个对象时候值的时候,首先通过对象的引用找到对应在堆内存的变量的值,然后把堆内存
变量的具体值load到线程本地内存中,建立一个变量副本,之后线程就不再和对象在堆内存变量值有任何关系,而是直接修改副本变量的值,
在修改完之后的某一个时刻(线程退出之前),自动把线程变量副本的值回写到对象在堆中变量。这样在堆中的对象的值就产生变化了。下面一幅图
描述这写交互
read and load 从主存复制变量到当前工作内存
use and assign 执行代码,改变共享变量值
store and write 用工作内存数据刷新主存相关内容
其中use and assign 可以多次出现
但是这一些操作并不是原子性,也就是 在read load之后,如果主内存count变量发生修改之后,线程工作内存中的值由于已经加载,不会产生对应的变化,所以计算出来的结果会和预期不一样
对于volatile修饰的变量,jvm虚拟机只是保证从主内存加载到线程工作内存的值是最新的
例如假如线程1,线程2 在进行read,load 操作中,发现主内存中count的值都是5,那么都会加载这个最新的值
在线程1堆count进行修改之后,会write到主内存中,主内存中的count变量就会变为6
线程2由于已经进行read,load操作,在进行运算之后,也会更新主内存count的变量值为6
导致两个线程及时用volatile关键字修改之后,还是会存在并发的情况。
public class Counter { public static int count = 0; public static void inc() { //这里延迟1毫秒,使得结果明显 try { Thread.sleep(1); } catch (InterruptedException e) { } count++; } public static void main(String[] args) { //同时启动1000个线程,去进行i++计算,看看实际结果 for (int i = 0; i < 1000; i++) { new Thread(new Runnable() { @Override public void run() { Counter.inc(); } }).start(); }
//这里每次运行的值都有可能不同,可能为1000
System.out.println("运行结果:Counter.count=" + Counter.count);
}
}
3.锁的可见性
4.发布对象
public static Set<String> sets; public void initSets(){ sets = new HashSet<>(); };
private Set<String> sets = new HashSet<>(); public Set<String> getSets(){ return sets; };
public class ThisEscape { public ThisEscape (EventSource source){ source.registerListener({ new EventListener() { public void onEvent(Event e){ doSomething(e); } }; }); } }
public class SafeListener { private final EventListener listener; private SafeListener (){ listener = new EventListener(){ public void onEvent(Event e){ doSomething(e); } }; } public static safeListener newInstance(EventSource source){ SafeListener safeListener = new SafeListener(); source.registerListener(safeListener.listener); return safeListener; } }
5.线程封闭
public class SafeListener { private static ThreadLocal<Connection> connectionHolder = new ThreadLocal<Connection>(){ public Connection initalValue(){ return DriverManager.getConnection(url); } }; //会根据当前的线程id进行取得,每个线程都会 public static Connection getConnection () { return connectionHolder.get(); } }
6不可变
public final class ThreeStooges { private final Set<String> stooge = new HashSet<>(); public ThreeStooges() { stooge.add("monday"); stooge.add("threeday"); } public boolean isStooge(String name){ return stooge.contains(name); } }
7安全发布
public class VolatileCached extends HttpServlet { private volatile OneCalueCache cache = new OneCalueCache(null,null); @Override public void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { int i = (int) request.getAttribute("integerValue"); int[] factors = cache.getFactors(i); if (factors == null) { cache = new OneCalueCache(i,factors); } } }
public class Holder { private int n; public Holder(int n) { this.n = n; } public void assertSanity(){ if (n != n) { throw new AssertionError("this statement is false"); } } }
1.通过金泰初始化器初始化对象的引用
2.将它的引用存储到volatile或AtomicReference(原子)
3.将它的引用存储到正确创建的对象的final域中
4.将它的引用存储到由锁正确保护的域中
public Map<String,Date> lastLogin = Collections.synchronizedMap(new HashMape<String Date>());