同時プログラミングトラップシリーズ(7)synchronizedの読み取りと書き込みが少なくパフォーマンスが低下

4356 ワード

同時読み取りの状況をテストします.
public class SynchronizedDemo {
	static SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

	public static void main(String[] args) throws Exception {
		Data data = new Data();
		Worker t1 = new Worker(data, true, "t1");
		Worker t2 = new Worker(data, true, "t2");
		t1.start();

		t2.start();
	}

	static class Worker extends Thread {
		Data data;
		boolean read;

		public Worker(Data data, boolean read, String threadName) {
			super(threadName);
			this.data = data;
			this.read = read;
		}

		public void run() {
			if (read)
				data.get();
			else
				data.set();
		}
	}

	/**
	 *    
	 */
	static class Data {
		/**
		 *    
		 */
		public synchronized void set() {
			System.out.println(Thread.currentThread().getName() + " set:begin "
					+ sdf.format(new Date()));
			try {
				Thread.sleep(5000);
			} catch (Exception e) {

			} finally {
				System.out.println(Thread.currentThread().getName()
						+ " set:end " + sdf.format(new Date()));
			}

		}

		/**
		 *    
		 */
		public synchronized int get() {
			System.out.println(Thread.currentThread().getName()
					+ " get :begin " + sdf.format(new Date()));
			try {
				Thread.sleep(5000);
			} catch (Exception e) {

			} finally {
				System.out.println(Thread.currentThread().getName()
						+ " get :end " + sdf.format(new Date()));
			}
			return 1;
		}
	}
}

 synchronizedが実行した結果:
t 1 get:begin 2013-05-06 22:57:50 t 1 get:end 2013-05-06 22:57:55 t 2 get:begin 2013-05-06 22:57:55 t 2 get:end 2013-05-06 22:58:00 t 1先実行、t 1終了後;t 2は、終了するまで実行を開始する.オブジェクトのメソッドにsynchronized修飾が追加されると、synchronized修飾のメソッドにアクセスするスレッドはいつでも1つしかないので、結果はシリアルで実行されることがわかります.
public class ReadWriteLockDemo {
	static SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

	public static void main(String[] args) throws Exception {
		Data data = new Data();
		Worker t1 = new Worker(data, true, "t1");
		Worker t2 = new Worker(data, true, "t2");
		t1.start();
		t2.start();
	}

	static class Worker extends Thread {
		Data data;
		boolean read;

		public Worker(Data data, boolean read, String threadName) {
			super(threadName);
			this.data = data;
			this.read = read;
		}

		public void run() {
			if (read)
				data.get();
			else
				data.set();
		}
	}

	/**
	 *    
	 */
	static class Data {
		ReadWriteLock lock = new ReentrantReadWriteLock();
		Lock read = lock.readLock();
		Lock write = lock.writeLock();

		/**
		 *    
		 */
		public void set() {
			write.lock();
			System.out.println(Thread.currentThread().getName()
					+ " set:begin " + sdf.format(new Date()));
			try {
				Thread.sleep(5000);
			} catch (Exception e) {

			} finally {
				System.out.println(Thread.currentThread().getName()
						+ " set:end " + sdf.format(new Date()));
				write.unlock();
			}

		}

		/**
		 *    
		 */
		public int get() {
			read.lock();
			System.out.println(Thread.currentThread().getName()
					+ " get :begin " + sdf.format(new Date()));
			try {
				Thread.sleep(5000);
			} catch (Exception e) {

			} finally {
				System.out.println(Thread.currentThread().getName()
						+ " get :end " + sdf.format(new Date()));
				read.unlock();
			}
			return 1;
		}
	}
}

リードロックを使用した実行結果:
t1 get :begin 2013-05-06 23:00:41t2 get :begin 2013-05-06 23:00:41t1 get :end 2013-05-06 23:00:46t2 get :end 2013-05-06 23:00:46
この2つのスレッドは同時に開始され、同時に終了します.リード・ロックを使用すると、複数のスレッドがリソースを共同で読み取ることができます(書き込みロックが取得されていないか、書き込み中のデータがありません).