当一个线程进入一个对象的一个synchronized方法后,其它线程是否可进入此对象的其它方法?...

本文探讨了在Java中,当多个线程分别尝试访问同一对象的同步方法与非同步方法时的行为差异。通过具体代码示例展示了同步方法如何阻止其他线程的进入,而非同步方法则不会阻止其他线程的访问。

分两种情况

         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");
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值