赞
踩
public class Singleton {
private final static Singleton INSTANCE = new Singleton();
private Singleton(){}
public static Singleton getInstance(){
return INSTANCE;
}
}
public class Singleton {
private static Singleton singleton;
private Singleton() {}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。