码迷,mamicode.com
首页 > 编程语言 > 详细

线程--脏读问题

时间:2017-11-07 01:34:21      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:rup   exception   string   class   span   nbsp   ted   print   lan   

1.概念:

对业务写方法加锁,对业务读方法不加锁,容易产生脏读问题(dirtyRead)

2.代码:

public class Account {
    String name;
    double balance;
    
    public synchronized void set(String name, double balance) {
        this.name = name;
        
        try {
            Thread.sleep(2000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        
        
        this.balance = balance;
    }
    
    public /*synchronized*/ double getBalance(String name) {
        return this.balance;
    }
    
    
    public static void main(String[] args) {
        Account a = new Account();
        new Thread(()->a.set("zhangsan", 100.0)).start();
        
        try {
            TimeUnit.SECONDS.sleep(1);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        
        System.out.println(a.getBalance("zhangsan"));
        
        try {
            TimeUnit.SECONDS.sleep(2);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        
        System.out.println(a.getBalance("zhangsan"));
    }
}

技术分享

 

线程--脏读问题

标签:rup   exception   string   class   span   nbsp   ted   print   lan   

原文地址:http://www.cnblogs.com/ganchuanpu/p/7795983.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!