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

静态属性@property

时间:2018-05-16 13:14:45      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:感知   prope   pre   __init__   调用   mil   int   静态属性   property   

property 作用其实把类里面的逻辑给隐藏起来(封装逻辑,让用户调用的时候感知不到你的逻辑)

property实例1:
class
Room:

def __init__(self):
pass

@property #将函数属性变成静态属性(后面调用的时候,就不需要用x.status()来调用了,直接x.status执行即可)
def status(self):
print(‘123‘)

R = Room()
R.status #结果打印 123

property实例2:
class Room:
def __init__(self):
pass

@property
def status(self):
return 123

R = Room()
print(R.status) #结果是返回 123


静态属性@property

标签:感知   prope   pre   __init__   调用   mil   int   静态属性   property   

原文地址:https://www.cnblogs.com/ajaxa/p/9044810.html

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