Python 官方文档:入门教程 => 点击学习
python中常用的装饰器有以下几种@property@property是Python的一种装饰器,常用于用来修饰方法。class DataSet(object):@propertydef method_with_property(self
python中常用的装饰器有以下几种
@property
@property是Python的一种装饰器,常用于用来修饰方法。
class DataSet(object):
@property
def method_with_property(self):
return 15
def method_without_property(self):
return 15
l = DataSet()
print(l.method_with_property)
print(l.method_without_property())
@abstractmethod
@abstractmethod装饰器是一种抽象方法,表示基类。
from abc import ABC, abstractmethod
class Foo(ABC):
@abstractmethod
def fun(self):
'''please Implemente in subclass'''
class SubFoo(Foo):
def fun(self):
print('fun in SubFoo')
a = SubFoo()
a.fun()
@staticmethoed
@staticmethoed装饰器不需要表示自身对象的self和自身类的cls参数。
class A(object):
bar = 1
def foo(self):
print 'foo'
@staticmethod
def static_foo():
print 'static_foo'
print A.bar
@claSSMethod
def class_foo(cls):
print 'class_foo'
print cls.bar
cls().foo()
A.static_foo()
A.class_foo()
--结束END--
本文标题: python常用装饰器有哪些
本文链接: https://lsjlt.com/news/112712.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0