关于懒汉模式
我想问一下为什么我这样写显示s3不等于s4
public class LazySingleton {
	
    private LazySingleton() {	
    }		
    
    private static LazySingleton instance;	
    
    public static LazySingleton getInstance() {
    
	if(instance == null)		
    {			
		return new LazySingleton();		
    }else {			
		return instance;		
	  }			
    }		
}
 
                            