码迷,mamicode.com
首页 > 编程语言 > 详细

Python Singleton

时间:2017-08-20 10:15:20      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:ddc   pop   single   art   test   com   声明   func   pretty   

Python Singleton

首先声明一个singleton装饰器

#!/usr/bin/env python
# -*- coding: utf-8 -*-


def singleton(cls, *args, **kw):
    instances = {}

    def _singleton():
        if cls not in instances:
            instances[cls] = cls(*args, **kw)
        return instances[cls]

    return _singleton

使用@singleton注解在须要单例的类上标注

#!/usr/bin/env python
# -*- coding: utf-8 -*-


@singleton
class Config:

    def __init__(self):
        pass

    def test(self):
        pass

測试

#!/usr/bin/env python
# -*- coding: utf-8 -*-


config = Config()
config.test()
...

Python Singleton

标签:ddc   pop   single   art   test   com   声明   func   pretty   

原文地址:http://www.cnblogs.com/gccbuaa/p/7398752.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!