多執行緒-生產者消費者問題程式碼2並解決執行緒安全問題

ZHOU_VIP發表於2017-06-03

package cn.itcast_04;

public class GetThread implements Runnable {
	private Student s;

	public GetThread(Student s) {
		this.s = s;
	}

	@Override
	public void run() {
		while (true) {
			synchronized (s) {
				System.out.println(s.name + "---" + s.age);
			}
		}
	}
}


package cn.itcast_04;

public class SetThread implements Runnable {

	private Student s;
	private int x = 0;

	public SetThread(Student s) {
		this.s = s;
	}

	@Override
	public void run() {
		while (true) {
			synchronized (s) {
				if (x % 2 == 0) {
					s.name = "林青霞";//剛走到這裡,就被別人搶到了執行權
					s.age = 27;
				} else {
					s.name = "劉意";  //剛走到這裡,就被別人搶到了執行權
					s.age = 30;
				}
				x++;
			}
		}
	}
}


package cn.itcast_04;

public class Student {
	String name;
	int age;
}


package cn.itcast_04;

/*
 * 分析:
 * 		資源類:Student	
 * 		設定學生資料:SetThread(生產者)
 * 		獲取學生資料:GetThread(消費者)
 * 		測試類:StudentDemo
 * 
 * 問題1:按照思路寫程式碼,發現資料每次都是:null---0
 * 原因: 我們在每個執行緒中都建立了新的資源,而我們要求的時候設定和獲取執行緒的資源應該是同一個
 * 如何實現呢?
 * 		在外界把這個資料建立出來,通過構造方法傳遞給其他的類。
 * 
 * 問題2:為了資料的效果好一些,我加入了迴圈和判斷,給出不同的值,這個時候產生了新的問題
 * 		A:同一個資料出現多次
 * 		B:姓名和年齡不匹配
 * 原因:
 * 		A:同一個資料出現多次
 * 			CPU的一點點時間片的執行權,就足夠你執行很多次。
 * 		B:姓名和年齡不匹配
 * 			執行緒執行的隨機性
 * 執行緒安全問題:
 * 		A:是否是多執行緒環境		是
 * 		B:是否有共享資料		是
 * 		C:是否有多條語句操作共享資料	是
 * 解決方案:
 * 		加鎖。
 * 		注意:
 * 			A:不同種類的執行緒都要加鎖。
 * 			B:不同種類的執行緒加的鎖必須是同一把。
 */
public class StudentDemo {
	public static void main(String[] args) {
		//建立資源
		Student s = new Student();
		
		//設定和獲取的類
		SetThread st = new SetThread(s);
		GetThread gt = new GetThread(s);

		//執行緒類
		Thread t1 = new Thread(st);
		Thread t2 = new Thread(gt);

		//啟動執行緒
		t1.start();
		t2.start();
	}
}


相關文章