回覆列表
  • 1 # 使用者7715875998885

    餓漢式:

    public class Singleton{

    private static Singleton singleton = new Singleton ();

    private Singleton (){}

    public Singleton getInstance(){return singletion;}

    }

    懶漢式:

    public class Singleton{

    private static Singleton singleton = null;

    public static synchronized synchronized getInstance(){

    if(singleton==null){

    singleton = new Singleton();

    }

    return singleton;

    }

    }

    比較:

    餓漢式是執行緒安全的,在類建立的同時就已經建立好一個靜態的物件供系統使用,以後不在改變

    懶漢式如果在建立例項物件時不加上synchronized則會導致對物件的訪問不是執行緒安全的

    推薦使用第一種

  • 中秋節和大豐收的關聯?
  • 2010年10月5日9點9分出生,五行缺什麼啊?