单例模式。

单例模式。

第一种形式:

public class Singleton {

private Singleton(){}

private static Singleton instance = new Singleton();

public static Singleton getInstance(){

return instance;

}

}

第二种形式:

public class Singleton {

private static Singleton instance = null;

public static synchronized Singleton getInstance(){

if (instance==null)

instance=new Singleton();

return instance;

}

posted on 2013-09-11 23:01  笨'小孩  阅读(95)  评论(0编辑  收藏  举报

导航