public class Singleton{ public static Singleton s =null; private Singleton(){ }
public static Singleton getInstance(){ return s=new Singleton() ; }
}