黑马程序员技术交流社区
标题:
懒汉式---算不算最严谨的??but最浪费时间
[打印本页]
作者:
Myth、骞
时间:
2015-11-30 14:07
标题:
懒汉式---算不算最严谨的??but最浪费时间
package com.itheima;
/**
* 6、 编写一个延迟加载的单例设计模式。
*
* @author Myth丶骞
*
*/
public class Test6 {
static class Singleton {
private static Singleton s = null;
private Singleton() {
}
public static Singleton getInstance() {
if (s == null) {
synchronized (s) {
if (s == null)
s = new Singleton();
}
}
return s;
}
}
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2