1. 程式人生 > >JAVA線程死鎖

JAVA線程死鎖

exc ber -m 變量 int 完成 ++ source 線程

文件名:DeadThreadByExtend.java

註:

1、起線程的時候用的是start方法,run方法也可以調用,但是僅僅相當於普通調用,在當前線程內執行。

2、synchronized 不能直接修飾變量。

3、synchronized 塊並不會強制塊內變量的單線程訪問。僅僅意味著在執行塊內語句時鎖住synchronized (args)的參數,直到執行結束才釋放。

package com.ycf.study.thread;

class Sources{
    int a;
    public void setA(int x) {
        synchronized (this) {
            this.a = x;
            try {
                Thread.sleep(2000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }
}
public class DeadThreadByExtend {
    
    public static void main(String[] args) {
        Sources s1 = new Sources();
        Sources s2 = new Sources();
        
        class MyThread1 extends java.lang.Thread {
            @Override
            public void run() {
                System.out.println("線程1開始");
                synchronized (s1) {
                    System.out.println("線程1申請修改s1");
                    s1.setA(20);
                    System.out.println("線程1修改完成");
                    System.out.println("線程1申請修改s2");
                    s2.setA(10);
                    System.out.println("線程1修改s2完成");
                }
                System.out.println("線程1退出並釋放鎖++++++++++");
            }
        }
        class MyThread2 extends java.lang.Thread {
            @Override
            public void run() {
                System.out.println("線程2開始");
                synchronized (s2) {
                    System.out.println("線程2申請修改s2");
                    s2.setA(20);
                    System.out.println("線程2修改s2完成");
                    System.out.println("線程2申請修改s1");
                    s1.setA(10);
                    System.out.println("線程2修改s1完成");
                }
                System.out.println("線程2退出並釋放鎖++++++++++");
            }
        }
        MyThread1 mt1 = new MyThread1();
        MyThread2 mt2 = new MyThread2();
        mt1.start();
        mt2.start();
    }
}
java學習群669823128

JAVA線程死鎖