您好,登錄后才能下訂單哦!
死鎖:
過多的同步造成相互不釋放資源,從而過多地等待,一般發生于
同步中持有多個對象的鎖
snchronized鎖住對象同時,另一個snchronized就不能鎖該對象
避免在一個代碼塊中,同時持有多個對象的鎖
死鎖:
public class tt {
public static void main(String[]args)
{
markup m1=new markup(1,"me");
markup m2 =new markup(2,"she");
m1.start();
m2.start();
}
}
//口紅
class lipstick{
}
//鏡子
class mirror{
}
//化妝
class markup extends Thread{
//加靜態表示一份,不管創建幾個對象都是一份
static lipstick lip=new lipstick();
static mirror mir=new mirror();
//選擇
int choice;
String girl;
public markup(int choice,String girl)
{
this.choice=choice;
this.girl=girl;
}
public void run(){
mark();
}
//相互持有對方的對象鎖-->可能造成死鎖
//加等待時間是為了讓另一個線程鎖相同對象的時候,該線程
//鎖的相同對象還沒有結束
//在這個死鎖中,第一個線程內的mir要等第二個已經開始的mir鎖結束才能執行
//而第二個線程內的mir結束需要等第一個線程內的lip解鎖才行
private void mark()
{
if(choice==0)
{
synchronized(lip)
{
System.out.println(this.girl+"獲得口紅");
//一秒后想要鏡子
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
synchronized(mir)
{
System.out.println(this.girl+"獲得鏡子");
}
}
}else
{
synchronized(mir)
{
System.out.println(this.girl+"獲得鏡子");
//2秒后想要口紅
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
synchronized(lip)
{
System.out.println(this.girl+"獲得口紅");
}
}
}
}
}
解決:
public class tt {
public static void main(String[]args)
{
markup m1=new markup(1,"me");
markup m2 =new markup(2,"she");
m1.start();
m2.start();
}
}
//口紅
class lipstick{
}
//鏡子
class mirror{
}
//化妝
class markup extends Thread{
//加靜態表示一份,不管創建幾個對象都是一份
static lipstick lip=new lipstick();
static mirror mir=new mirror();
//選擇
int choice;
String girl;
public markup(int choice,String girl)
{
this.choice=choice;
this.girl=girl;
}
public void run(){
mark();
}
{
if(choice==0)
{
synchronized(lip)
{
System.out.println(this.girl+"獲得口紅");
//一秒后想要鏡子
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
synchronized(mir)
{
System.out.println(this.girl+"獲得鏡子");
}
}else
{
synchronized(mir)
{
System.out.println(this.girl+"獲得鏡子");
//2秒后想要口紅
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
synchronized(lip)
{
System.out.println(this.girl+"獲得口紅");
}
}
}
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。