最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Python設計模式之單例模式實例

 更新時間:2014年04月26日 11:30:26   作者:  
這篇文章主要介紹了設計模式中的單例模式Python實例,需要的朋友可以參考下

注:使用的是Python 2.7。

一個簡單實現(xiàn)

復制代碼 代碼如下:

class Foo(object):
    __instance = None
    def __init__(self):
        pass
    @classmethod
    def getinstance(cls):
        if(cls.__instance == None):
            cls.__instance = Foo()
        return cls.__instance

if __name__ == '__main__':
    foo1 = Foo.getinstance()
    foo2 = Foo.getinstance()
    print id(foo1)
    print id(foo2)
    print id(Foo())


輸出的前兩個結(jié)果是相同的(id(foo1)與id(foo2)的值相同),第三個結(jié)果和前兩個不同。這里類方法getinstance()用于獲取單例,但是類本身也可以實例化,這樣的方式其實并不符合單例模式的要求。但是這樣做也有好處,代碼簡單,大家約定好這樣子調(diào)用就行了。但是最好在類的命名上也體現(xiàn)了出來這是一個單例類,例如Foo_singleton。

換一個思路

先說一下init和new的區(qū)別:

復制代碼 代碼如下:

class Foo(object):
    __instance = None
    def __init__(self):
        print 'init'
if __name__ == '__main__':
    foo = Foo()

運行結(jié)果是:
復制代碼 代碼如下:

init

而下面的示例:
復制代碼 代碼如下:

class Foo(object):
    __instance = None
    def __init__(self):
        print 'init'
    def __new__(cls, *args, **kwargs):
        print 'new'

if __name__ == '__main__':
    foo = Foo()


運行結(jié)果是:
復制代碼 代碼如下:
new

new是一個類方法,會創(chuàng)建對象時調(diào)用。而init方法是在創(chuàng)建完對象后調(diào)用,對當前對象的實例做一些一些初始化,無返回值。如果重寫了new而在new里面沒有調(diào)用init或者沒有返回實例,那么init將不起作用。以下內(nèi)容引用自http://docs.python.org/2/reference/datamodel.html#object.new

復制代碼 代碼如下:

If __new__() returns an instance of cls, then the new instance's __init__() method will be invoked like __init__(self[, ...]), where self is the new instance and the remaining arguments are the same as were passed to __new__().

If __new__() does not return an instance of cls, then the new instance's __init__() method will not be invoked.


這樣做:
復制代碼 代碼如下:

class Foo(object):
    __instance = None
    def __init__(self):
        print 'init'

    def __new__(cls, *args, **kwargs):
        print 'new'
        if cls.__instance == None:
            cls.__instance = cls.__new__(cls, *args, **kwargs)
        return cls.__instance

if __name__ == '__main__':
    foo = Foo()

    錯誤如下:

復制代碼 代碼如下:

RuntimeError: maximum recursion depth exceeded in cmp

而這樣也有一樣的錯誤:

復制代碼 代碼如下:

class Foo(object):
    __instance = None
    def __init__(self):
        if self.__class__.__instance == None:
            self.__class__.__instance = Foo()
        print 'init'

if __name__ == '__main__':
    foo = Foo()


該怎么做呢?

下面參考了http://stackoverflow.com/questions/31875/is-there-a-simple-elegant-way-to-define-singletons-in-python/31887#31887:

復制代碼 代碼如下:

class Foo(object):
    __instance = None
    def __new__(cls, *args, **kwargs):
        print 'hhhhhhhhh'
        if not cls.__instance:
            cls.__instance = super(Foo, cls).__new__(cls, *args, **kwargs)
        return cls.__instance

    def hi(self):
        print 'hi, world'
        print 'hi, letian'

if __name__ == '__main__':
    foo1 = Foo()
    foo2 = Foo()
    print id(foo1)
    print id(foo2)
    print isinstance(foo1, object)
    print isinstance(foo1, Foo)
    foo1.hi()


運行結(jié)果:
復制代碼 代碼如下:

hhhhhhhhh
hhhhhhhhh
39578896
39578896
True
True
hi, world
hi, letian

那么,到底發(fā)生了什么,我們先回顧一下super:

復制代碼 代碼如下:

>>> print super.__doc__
super(type) -> unbound super object
super(type, obj) -> bound super object; requires isinstance(obj, type)
super(type, type2) -> bound super object; requires issubclass(type2, type)
Typical use to call a cooperative superclass method:
class C(B):
    def meth(self, arg):
        super(C, self).meth(arg)

可以肯定上面的單例模式代碼中的這一行代碼:
復制代碼 代碼如下:

cls.__instance = super(Foo, cls).__new__(cls, *args, **kwargs)

super(Foo, cls)是object,super(Foo, cls).new方法使用的是object的new方法。我們看一下object.new方法的作用:
復制代碼 代碼如下:

>>> print object.__new__.__doc__
T.__new__(S, ...) -> a new object with type S, a subtype of T

如果是一個繼承鏈

復制代碼 代碼如下:

class Fo(object):
    def __new__(cls, *args, **kwargs):
        print 'hi, i am Fo'
        return  super(Fo, cls).__new__(cls, *args, **kwargs)

class Foo(Fo):
    __instance = None
    def __new__(cls, *args, **kwargs):
        if not cls.__instance:
            print Foo is cls
            print issubclass(cls, Fo)
            print issubclass(cls, object)
            cls.__instance = super(Foo, cls).__new__(cls, *args, **kwargs)
        return cls.__instance

    def hi(self):
        print 'hi, world'

if __name__ == '__main__':
    foo1 = Foo()
    foo1.hi()
    print isinstance(foo1, Foo)
    print isinstance(foo1, Fo)
    print isinstance(foo1, object)


運行結(jié)果如下:
復制代碼 代碼如下:

True
True
True
hi, i am Fo
hi, world
True
True
True

如果如下定義Fo,也正常運行:
復制代碼 代碼如下:

class Fo(object):
    pass

但是,若這樣定義:
復制代碼 代碼如下:

class Fo(object):
    def __new__(cls, *args, **kwargs):
        print 'hi, i am Fo'

運行時報錯如下:
復制代碼 代碼如下:

AttributeError: 'NoneType' object has no attribute 'hi'

相關(guān)文章

最新評論

白河县| 灵川县| 甘谷县| 连州市| 滕州市| 江达县| 洛扎县| 陵川县| 龙川县| 军事| 广河县| 绥德县| 潞西市| 中方县| 秦安县| 新民市| 菏泽市| 德清县| 宾川县| 玉屏| 博兴县| 东丰县| 华安县| 凭祥市| 白沙| 克山县| 武鸣县| 南江县| 定安县| 长兴县| 大化| 蓬安县| 巫山县| 镇巴县| 镇康县| 临泽县| 尤溪县| 教育| 茶陵县| 南安市| 昌宁县|