1. 首页
  2. 数据库
  3. 其它
  4. Python装饰器——@property

Python装饰器——@property

上传者: 2020-12-23 02:01:12上传 PDF文件 35.36KB 热度 16次
文章目录引言@property设置可读写属性设置只读属性 引言 首先我们定义一个Person类,这里多说一点在Python3.x中Person()与Person(object)是一样的,默认帮你加载了Object类 class Person(): def get_height(self): return self._height def set_height(self, value): self._height = value if __name__ == '__main__': hhh = Person() hhh.set_he
用户评论