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

分几种情况:

     1.其他方法前是否加了synchronized关键字,如果没加,则能。

     2.如果这个方法内部调用了wait,则可以进入其他synchronized方法。

     3.如果其他个方法都加了synchronized关键字,并且内部没有调用wait,则不能。

4.如果其他方法是static,它用的同步锁是当前类的字节码,与非静态的方法不能同步,因为非静态的方法用的是this

当一个线程进入一个对象的synchronized()方法后,其他线程是否可以进入此对象的其他方法取决于方法本身,如果该方法是非synchronized()方法,那么是可以访问的,如果是synchronized()方法,那么不能访问。示例如下:

class MultiThread {
public synchronized void synchronizedMethod(){
System.out.println("begin calling synchronizedMethod...");
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("finish calling synchronizedMethod...");
}
public void generalMethod(){
System.out.println("call generalMethod...");
}
}
public class test34{
static final MultiThread t=new MultiThread();
      public static void main(String[] args) {
Thread t1=new Thread(){
public void run(){
t.synchronizedMethod();
}
};
Thread t2=new Thread(){
public void run(){
t.generalMethod();
}
};
t1.start();
t2.start();
      }
}

结果为:

begin calling synchronizedMethod...

call generalMethod...
finish calling synchronizedMethod...

从上例可以看出,线程t1在调用synchronized()方法的过程中,线程t2仍然可以访问同一个对象的非sychronized()方法。

在方法generalMethod()前加一个synchronized的修饰符。因为线程t1调用synchronized void synchronizedMethod()的时候(即线程t1获得了对象锁),t2是无法调用该方法的。修改后的代码如下:

class MultiThread {
public synchronized void synchronizedMethod(){
System.out.println("begin calling synchronizedMethod...");
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("finish calling synchronizedMethod...");
}
public synchronized void generalMethod(){
System.out.println("call generalMethod...");
}
}
public class test34{
static final MultiThread t=new MultiThread();
      public static void main(String[] args) {
Thread t1=new Thread(){
public void run(){
t.synchronizedMethod();
}
};
Thread t2=new Thread(){
public void run(){
t.generalMethod();
}
};
t1.start();
t2.start();
      }
}

结果为:

begin calling synchronizedMethod...
finish calling synchronizedMethod...
call generalMethod...

如果其他方法是静态的方法,它用的同步锁是当前类的字节码,与非静态的方法不能同步,因此,静态方法可以被调用,实例如下:

class MultiThread {
public synchronized void synchronizedMethod(){
System.out.println("begin calling synchronizedMethod...");
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("finish calling synchronizedMethod...");
}
public synchronized static void generalMethod(){
System.out.println("call generalMethod...");
}
}
public class test34{
static final MultiThread t=new MultiThread();
      public static void main(String[] args) {
Thread t1=new Thread(){
public void run(){
t.synchronizedMethod();
}
};
Thread t2=new Thread(){
public void run(){
t.generalMethod();
}
};
t1.start();
t2.start();
      }
}

结果为:

begin calling synchronizedMethod...
call generalMethod...
finish calling synchronizedMethod...

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值