首页 > 其他 > 详细

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

时间:2014-02-10 20:20:03      阅读:387      评论:0      收藏:0      [点我收藏+]

分两种情况

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










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

原文:http://blog.csdn.net/guoqingcun/article/details/19043465

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!