Java 单例模式 第一种(懒汉,线程不安全)12345678910111. public class Singleton { 2. private static Singleton instance; 3. private...