當一個線程進入一個對象的一個synchronized方法后,其它線程是否可進入此對象的其它方法?


分兩種情況

         1):進入此對象的非同步方法

              答案:可以

         2):進入此對象的同步方法

             答案:不可以

第一種情況原代碼

/**
 * 
 */
package thread;


/**
 * @author Administrator
 *
 */
public class TestClass {
    /**
     * @param args
     */
    public static void main(String[] args) {
        TestClass tc = new TestClass();
        Thread1 t1 = tc.new Thread1(tc);
        t1.start();
        Thread2 t2 = tc.new Thread2(tc);
        t2.start();
        
    }

    class Thread1 extends Thread{
        TestClass tc = null;
        public Thread1(TestClass tc) {
            this.tc = tc;
        }
        @Override
        public void run() {
            tc.method1();
        }
    }
    class Thread2 extends Thread{
        TestClass tc = null;
        public Thread2(TestClass tc) {
            this.tc = tc;
        }
        @Override
        public void run() {
            // TODO Auto-generated method stub
            tc.method2();
        }
    }
    
    public synchronized void method1(){
        System.out.println("method1");
        try {
            Thread.sleep(1000*10);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    
    }
    public  void method2(){
        System.out.println("method2");
    }
}

第二種情況原代碼

/**
 * 
 */
package thread;


/**
 * @author Administrator
 *
 */
public class TestClass {
    /**
     * @param args
     */
    public static void main(String[] args) {
        TestClass tc = new TestClass();
        Thread1 t1 = tc.new Thread1(tc);
        t1.start();
        Thread2 t2 = tc.new Thread2(tc);
        t2.start();
        
    }

    class Thread1 extends Thread{
        TestClass tc = null;
        public Thread1(TestClass tc) {
            this.tc = tc;
        }
        @Override
        public void run() {
            tc.method1();
        }
    }
    class Thread2 extends Thread{
        TestClass tc = null;
        public Thread2(TestClass tc) {
            this.tc = tc;
        }
        @Override
        public void run() {
            // TODO Auto-generated method stub
            tc.method2();
        }
    }
    
    public synchronized void method1(){
        System.out.println("method1");
        try {
            Thread.sleep(1000*10);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
    public synchronized void method2(){
        System.out.println("method2");
    }
}

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM