原创 單例模式的七中寫法

  第一種(懶漢,線程不安全):   Java代碼   public class Singleton {      private static Singleton instance;      private Singleton