惰性单例

惰性单例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
let LazySingle = (() => {
let instance = null
function Single() {
return {
Method: function () {
console.log("public method")
},
Prototype: "some message",
}
}
return () => {
if (!instance) instance = Single()
return instance
}
})()

// for test
console.log(LazySingle().Prototype)
LazySingle().Method()