开发者社区> 问答> 正文

@classmethod, @staticmethod, @property都是什么意思?

@classmethod, @staticmethod, @property都是什么意思?

展开
收起
珍宝珠 2019-11-29 15:33:13 802 0
1 条回答
写回答
取消 提交回答
  • @my_decorator
    def my_func(stuff):
        do_things
    

    以上代码相当于:

    def my_func(stuff):
        do_things
    my_func = my_decorator(my_func)
    
    

    你可以在这里找到修饰器的一般用法。

    @classmethod, @staticmethod 和 @property修饰器是使用在类中的。

    2019-11-29 15:39:22
    赞同 展开评论 打赏
问答地址:
问答排行榜
最热
最新

相关电子书

更多
低代码开发师(初级)实战教程 立即下载
冬季实战营第三期:MySQL数据库进阶实战 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载