2011年11月9日

Singleton

Singleton:
    static (物件)未建立就已存在, 不需要再去 new一個物件出來

ex:
class Cat
    static color = yellow

[computer A]
print(Cat.color)
yellow

[computer B]
print(Cat.color)
yellow

[computer C]
print(Cat.color)
yellow

沒有留言:

張貼留言