程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> java 多線程-為什麼兩個方法沒有同步啊?

java 多線程-為什麼兩個方法沒有同步啊?

編輯:編程解疑
為什麼兩個方法沒有同步啊?

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

最佳回答:


Thread a=new dui_xiang("線程1");
  Thread b=new dui_xiang("線程2");
        a.start();
        b.start();
                這裡的synchronized 只對調用同一個類實例的方法有同步,你這是兩個類實例,a,b,所以不起作用
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved