首页 > 其他 > 详细

14_synchronized深入

时间:2017-04-10 23:26:16      阅读:300      评论:0      收藏:0      [点我收藏+]

【脏读】

对于对象同步和异步的方法,我们在设计程序的时候,一定要考虑问题的整体,不然会出现不一致的错误,最经典的错误的就是脏读(dirty read)。

【实例代码】

package com.higgin.part4;

/**
 * 在我们对一个对象的方法加锁的时候,需要考虑业务的整体性。
 * 本例子中的setValue或getValue必须同时加上synchronized同步关键字,办证业务的原子性,不然会出现业务错误 
 */
public class DirtyRead {
    private String username="zhangsan";
    private String password="123";
    
    public synchronized void setValue(String username,String password){
        this.username=username;
        try {
            Thread.sleep(2000);   //延时2秒
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        this.password=password;
        System.out.println("setValue最终结果【 username = "+username+", password = "+password + "");
    }
    
    /**
     * 加和不加synchronized有区别
     */
    public void getValue(){
        System.out.println("getValue最终结果【 username = "+username+", password = "+password + "");
    }
    
    public static void main(String[] args) throws InterruptedException {
        final DirtyRead dr = new DirtyRead();
        
        Thread t1 = new Thread(new Runnable() {
            @Override
            public void run() {
                dr.setValue("lisi", "456");
            }
        });
        t1.start();   //t1线程去设置值
        Thread.sleep(1000);
        dr.getValue();    //相当于main线程去读取值
    }
}

【运行结果:不加synchronized】

技术分享

【运行结果:加上synchronized】

技术分享

 

14_synchronized深入

原文:http://www.cnblogs.com/HigginCui/p/6691321.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!