Java单例模式的3种实现方法 饿汉模式 public class Singleton { private final static Singleton INSTANCE = new Sing