//单例模式之饿汉式public class Singleton { private Singleton() { // TODO Auto-generated constructor stub } private static Singleton instance = new Singleton(); public static Singleton getInstance(){ return instance; }}