函数装饰@property等

来源:互联网 发布:电脑网络连接出现红叉 编辑:程序博客网 时间:2024/05/01 00:49
class test(object):@propertydef func(slf):return 5@staticmethoddef fun():return 10>>> t =test()>>> t.func5>>> test.fun()10

0 0
原创粉丝点击