Lock(八)

package lock;

import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;

/**
 * 这样就实现了和sychronized一样的同步效果,
 *     需要注意的是,用sychronized修饰的方法或者语句块在代码执行完之后锁自动释放,
 *     而用Lock需要我们手动释放锁,所以为了保证锁最终被释放(发生异常情况),
 *     要把互斥区放在try内,释放锁放在finally内。
 */
public class LockTest {
    public static void main(String[] args) {

        final Outputter1 output = new Outputter1();

        new Thread() {
            public void run() {
                output.output("zhangsan");
            }
        }.start();

        new Thread() {

            public void run() {

                output.output("lisi");

            }

        }.start();

    }
}

class Outputter1 {
    private Lock lock = new ReentrantLock();// 锁对象
    public void output(String name) {
        lock.lock();// 得到锁
        try {

            for(int i = 0; i < name.length(); i++) {

                System.out.print(name.charAt(i));

            }

        }finally {

            lock.unlock();// 释放锁

        }

    }
}

package lock;

import java.util.Random;
import java.util.concurrent.locks.ReadWriteLock;
import java.util.concurrent.locks.ReentrantReadWriteLock;


/**
 * Lock是java.util.concurrent.locks包下的接口,
 *     Lock 实现提供了比使用synchronized 方法和语句可获得的更广泛的锁定操作,
 *     它能以更优雅的方式处理线程同步问题。
 *一.Lock 和synchronized 的区别
 *    Lock 是需要手动的释放锁而synchronized在代码块执行完后自动的释放锁
 *    好处:所以为了保证锁最终被释放(发生异常情况),要把互斥区放在try内,释放锁放在finally内。
 *二、ReadWriteLock(读写锁)
 *    1、为了保证数据的一致性和完整性
 *          读取数据和写入是互斥的
 *          写入数据和写入数据是互斥的
 *          读取数据和读取数据不是互斥的
 *
 */
public class ReadWriteLockTest {

    public static void main(String[] args) {

        final Data data = new Data();

        for (int i = 0; i < 3; i++) {

            new Thread(new Runnable() {

                public void run() {

                    for (int j = 0; j < 5; j++) {

                        data.set(new Random().nextInt(30));

                    }

                }

            }).start();

        }

        for (int i = 0; i < 3; i++) {

            new Thread(new Runnable() {

                public void run() {

                    for (int j = 0; j < 5; j++) {

                        data.get();

                    }

                }

            }).start();

        }

    }

}

/*
class Data {

    private int data;// 共享数据

    public synchronized  void set(int data) {

        System.out.println(Thread.currentThread().getName() + "准备写入数据");

        try {

            Thread.sleep(20);

        } catch (InterruptedException e) {

            e.printStackTrace();

        }

        this.data = data;

        System.out.println(Thread.currentThread().getName() + "写入" + this.data);

    }

    public synchronized  void get() {

        System.out.println(Thread.currentThread().getName() + "准备读取数据");

        try {

            Thread.sleep(20);

        } catch (InterruptedException e) {

            e.printStackTrace();

        }

        System.out.println(Thread.currentThread().getName() + "读取" + this.data);

    }

}
*/

class Data {

    private int data;// 共享数据

    private ReadWriteLock rwl = new ReentrantReadWriteLock();

    public void set(int data) {

        rwl.writeLock().lock();// 取到写锁

        try {

            System.out.println(Thread.currentThread().getName() + "准备写入数据");

            try {

                Thread.sleep(20);

            } catch (InterruptedException e) {

                e.printStackTrace();

            }

            this.data = data;

            System.out.println(Thread.currentThread().getName() + "写入" + this.data);

        } finally {

            rwl.writeLock().unlock();// 释放写锁

        }

    }

    public void get() {

        rwl.readLock().lock();// 取到读锁

        try {

            System.out.println(Thread.currentThread().getName() + "准备读取数据");

            try {

                Thread.sleep(20);

            } catch (InterruptedException e) {

                e.printStackTrace();

            }

            System.out.println(Thread.currentThread().getName() + "读取" + this.data);

        } finally {

            rwl.readLock().unlock();// 释放读锁

        }

    }

}

本文来自:高爽|Coder,原文地址:http://blog.csdn.net/ghsau/article/details/7461369,转载请注明。

你可能感兴趣的:(Lock(八))