java基礎學習總結——線程(二)

java基礎學習總結——線程(二)

一、線程的優先級別

  

線程優先級別的使用範例:

package cn.galc.test;

public class TestThread6 {
    public static void main(String args[]) {
        MyThread4 t4 = new MyThread4();
        MyThread5 t5 = new MyThread5();
        Thread t1 = new Thread(t4);
        Thread t2 = new Thread(t5);
        t1.setPriority(Thread.NORM_PRIORITY + 3);// 使用setPriority()方法設置線程的優先級別,這裏把t1線程的優先級別進行設置
        /*
         * 把線程t1的優先級(priority)在正常優先級(NORM_PRIORITY)的基礎上再提高3級
         * 這樣t1的執行一次的時間就會比t2的多很多
         * 默認情況下NORM_PRIORITY的值爲5
         */
        t1.start();
        t2.start();
        System.out.println("t1線程的優先級是:" + t1.getPriority());
        // 使用getPriority()方法取得線程的優先級別,打印出t1的優先級別爲8
    }
}

class MyThread4 implements Runnable {
    public void run() {
        for (int i = 0; i <= 1000; i++) {
            System.out.println("T1:" + i);
        }
    }
}

class MyThread5 implements Runnable {
    public void run() {
        for (int i = 0; i <= 1000; i++) {
            System.out.println("===============T2:" + i);
        }
    }
}

  run()方法一結束,線程也就結束了。

二、線程同步

  

synchronized關鍵字的使用範例:

package cn.galc.test;

public class TestSync implements Runnable {
    Timer timer = new Timer();

    public static void main(String args[]) {
        TestSync test = new TestSync();
        Thread t1 = new Thread(test);
        Thread t2 = new Thread(test);
        t1.setName("t1");// 設置t1線程的名字
        t2.setName("t2");// 設置t2線程的名字
        t1.start();
        t2.start();
    }

    public void run() {
        timer.add(Thread.currentThread().getName());
    }
}

class Timer {
    private static int num = 0;

    public/* synchronized */void add(String name) {// 在聲明方法時加入synchronized時表示在執行這個方法的過程之中當前對象被鎖定
        synchronized (this) {
            /*
             * 使用synchronized(this)來鎖定當前對象,這樣就不會再出現兩個不同的線程同時訪問同一個對象資源的問題了 只有當一個線程訪問結束後纔會輪到下一個線程來訪問
             */
            num++;
            try {
                Thread.sleep(1);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            System.out.println(name + ":你是第" + num + "個使用timer的線程");
        }
    }
}

線程死鎖的問題:

package cn.galc.test;

/*這個小程序模擬的是線程死鎖的問題*/
public class TestDeadLock implements Runnable {
    public int flag = 1;
    static Object o1 = new Object(), o2 = new Object();

    public void run() {
        System.out.println(Thread.currentThread().getName() + "的flag=" + flag);
        /*
         * 運行程序後發現程序執行到這裏打印出flag以後就再也不往下執行後面的if語句了
         * 程序也就死在了這裏,既不往下執行也不退出
         */

        /* 這是flag=1這個線程 */
        if (flag == 1) {
            synchronized (o1) {
                /* 使用synchronized關鍵字把對象01鎖定了 */
                try {
                    Thread.sleep(500);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
                synchronized (o2) {
                    /*
                     * 前面已經鎖住了對象o1,只要再能鎖住o2,那麼就能執行打印出1的操作了
                     * 可是這裏無法鎖定對象o2,因爲在另外一個flag=0這個線程裏面已經把對象o1給鎖住了
                     * 儘管鎖住o2這個對象的線程會每隔500毫秒睡眠一次,可是在睡眠的時候仍然是鎖住o2不放的
                     */
                    System.out.println("1");
                }
            }
        }
        /*
         * 這裏的兩個if語句都將無法執行,因爲已經造成了線程死鎖的問題
         * flag=1這個線程在等待flag=0這個線程把對象o2的鎖解開,
         * 而flag=0這個線程也在等待flag=1這個線程把對象o1的鎖解開
         * 然而這兩個線程都不願意解開鎖住的對象,所以就造成了線程死鎖的問題
         */

        /* 這是flag=0這個線程 */
        if (flag == 0) {
            synchronized (o2) {
                /* 這裏先使用synchronized鎖住對象o2 */
                try {
                    Thread.sleep(500);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
                synchronized (o1) {
                    /*
                     * 前面已經鎖住了對象o2,只要再能鎖住o1,那麼就能執行打印出0的操作了 可是這裏無法鎖定對象o1,因爲在另外一個flag=1這個線程裏面已經把對象o1給鎖住了 儘管鎖住o1這個對象的線程會每隔500毫秒睡眠一次,可是在睡眠的時候仍然是鎖住o1不放的
                     */
                    System.out.println("0");
                }
            }
        }
    }

    public static void main(String args[]) {
        TestDeadLock td1 = new TestDeadLock();
        TestDeadLock td2 = new TestDeadLock();
        td1.flag = 1;
        td2.flag = 0;
        Thread t1 = new Thread(td1);
        Thread t2 = new Thread(td2);
        t1.setName("線程td1");
        t2.setName("線程td2");
        t1.start();
        t2.start();
    }
}

解決線程死鎖的問題最好只鎖定一個對象,不要同時鎖定兩個對象

生產者消費者問題:

package cn.galc.test;

/*    範例名稱:生產者--消費者問題
 *     源文件名稱:ProducerConsumer.java
 *    要  點:
 *        1. 共享數據的不一致性/臨界資源的保護
 *        2. Java對象鎖的概念
 *        3. synchronized關鍵字/wait()及notify()方法
 */

public class ProducerConsumer {
    public static void main(String args[]){
            SyncStack stack = new SyncStack();
            Runnable p=new Producer(stack);
            Runnable c = new Consumer(stack);
            Thread p1 = new Thread(p);
            Thread c1 = new Thread(c);

            p1.start();
            c1.start();
    }
}


class SyncStack{  //支持多線程同步操作的堆棧的實現
    private int index = 0;
    private char []data = new char[6];
    public synchronized void push(char c){
        if(index == data.length){
        try{
                this.wait();
        }catch(InterruptedException e){}
        }
        this.notify();
        data[index] = c;
        index++;
    }
    public synchronized char pop(){
        if(index ==0){
            try{
                this.wait();
            }catch(InterruptedException e){}
        }
        this.notify();
        index--;
        return data[index];
    }
}


class  Producer implements Runnable{
    SyncStack stack;
    public Producer(SyncStack s){
        stack = s;
    }
    public void run(){
        for(int i=0; i<20; i++){
            char c =(char)(Math.random()*26+'A');
            stack.push(c);
            System.out.println("produced:"+c);
            try{
                Thread.sleep((int)(Math.random()*1000));
            }catch(InterruptedException e){
            }
        }
    }
}


class Consumer implements Runnable{
    SyncStack stack;
    public Consumer(SyncStack s){
        stack = s;
    }
    public void run(){
        for(int i=0;i<20;i++){
            char c = stack.pop();
            System.out.println("消費:"+c);
            try{
                Thread.sleep((int)(Math.random()*1000));
            }catch(InterruptedException e){
            }
        }
    }
}

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章