码迷,mamicode.com
首页 > 其他好文 > 详细

通过描述符和类装饰器,自定义staicmethod(静态方法)

时间:2019-09-27 10:34:19      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:length   aic   static   war   Owner   ini   *args   描述   __init__   

通过描述符和类装饰器,自定义staicmethod(静态方法)

class StaticMethod:
    def __init__(self,func):
        self.func = func

    def __get__(self, instance, owner):
        def deco(*args,**kwargs):
            return self.func(*args,**kwargs)
        return deco

class Room:
    @staticmethod
    def area(width,length,higt):
        return width * length * higt

    @StaticMethod
    def area1(width,length,higt):
        return width * length * higt

print(Room.area(10,20,1))
print(Room.area1(10,20,1))
r = Room()
print(r.area(10,20,2))
print(r.area1(10,20,2))

 

通过描述符和类装饰器,自定义staicmethod(静态方法)

标签:length   aic   static   war   Owner   ini   *args   描述   __init__   

原文地址:https://www.cnblogs.com/xieys-1993/p/11596066.html

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