1、
private Singleton(){}
2、
private static final Singleton singleton=new Singleton();
3、
private static Singleton getSingleton(){
return singleton;
}