java.lang.Runtime中的单例模式2021-11-12 07:00:36public class Runtime { private static Runtime currentRuntime = new Runtime(); public static Runtime getRuntime() { return currentRuntime; } private Runtime() { } } 这是典型的饿汉模式。懒汉和饿汉各有应用场景,请看文章:http://blog.csdn.net/woshixuye/article/details/10020709?locationNum=2上一篇:领域驱动设计常见问题FAQ下一篇:web.xml配置文件详解