Python實現__metaclass__實現方法已耗用時間統計

來源:互聯網
上載者:User

標籤:

#coding:utf-8import sys,os,time,types,functools#裝飾器,包裹被檢測函數,並計數def timerit(func):    @functools.wraps(func)    def wrapper(*args,**kw):        start=time.time()        value=func(*args,**kw)        end=time.time()        print("%suse time is %s"%(func.__name__,end-start))        return value    return wrapper#元類,被計數的函數__metaclass__指向這個函數class profiler(type):    def __new__(cls,name,base,attr):        print(‘__new__ is called‘)        #遍曆被計數類的屬性,如果是FunctionType則用計數裝飾器包裹它        for k,v in attr.items():            if isinstance(v,types.FunctionType):                attr[k]=timerit(v)        return type.__new__(cls,name,base,attr)class foo(metaclass=profiler):    __metaclass__=profiler    #這個地方有一個疑問,    def countit(*args):        sum=0        for i in range(10000):            sum=sum+i        print(sum)def main():    import time    print(time.time())    print(hasattr(profiler,‘timeit‘))    f=foo()    f.countit()    print(dir(f))    print(f.__metaclass__)    if __name__=="__main__":    main()
View Code


幾天前寫的,參考了園友的一篇文章,連結找不到了。先感謝,找到了連結再補上。

Python實現__metaclass__實現方法已耗用時間統計

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.