qq_33816944 2016-06-07 03:24 采纳率: 50%
浏览 1179
已采纳

为什么两个方法没有同步啊?

package duo_xian_cheng;
class dui_xiang extends  Thread{
 String  name_1;
 dui_xiang(String a ){
 super();
 name_1=a;
 
 }
 
 synchronized void fun_1(){
 try{for(int i=0;i<10;i++)
 {System.out.println(name_1+ "fun_1");
 sleep(1000);}
 }catch(InterruptedException e){
  System.out.println( "InterruptedException:fun_1"); 
 }
 System.out.println( name_1+"fun_1");

 
synchronized void fun_2(){
 try{for(int i=0;i<10;i++)
 {System.out.println(name_1+ "fun_2");
 sleep(1000);}
 }catch(InterruptedException e){
  System.out.println( "InterruptedException:fun_2"); 
 }System.out.println( name_1+"fun_2");

synchronized  void fun_3(){
 try{for(int i=0;i<10;i++)
 {System.out.println(name_1+ "fun_3");
 sleep(1000);}
 }catch(InterruptedException e){
  System.out.println( "InterruptedException:fun_3"); 
 }System.out.println( name_1+"fun_3");

 

public synchronized void  run(){
 fun_1();
 fun_2();
 fun_3();
}
 

}
public class dan_dui_xiang {

 public static void main(String[] args) {
  Thread a=new dui_xiang("线程1");
  Thread b=new dui_xiang("线程2");
        a.start();
        b.start();
  
 }
 
  
}

  • 写回答

2条回答 默认 最新

  • danielinbiti 2016-06-07 03:30
    关注
    Thread a=new dui_xiang("线程1");
      Thread b=new dui_xiang("线程2");
            a.start();
            b.start();
                    这里的synchronized 只对调用同一个类实例的方法有同步,你这是两个类实例,a,b,所以不起作用
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥500 把面具戴到人脸上,请大家贡献智慧
  • ¥15 任意一个散点图自己下载其js脚本文件并做成独立的案例页面,不要作在线的,要离线状态。
  • ¥15 各位 帮我看看如何写代码,打出来的图形要和如下图呈现的一样,急
  • ¥30 c#打开word开启修订并实时显示批注
  • ¥15 如何解决ldsc的这条报错/index error
  • ¥15 VS2022+WDK驱动开发环境
  • ¥30 关于#java#的问题,请各位专家解答!
  • ¥30 vue+element根据数据循环生成多个table,如何实现最后一列 平均分合并
  • ¥20 pcf8563时钟芯片不启振
  • ¥20 pip2.40更新pip2.43时报错