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

property的使用

时间:2019-02-10 23:19:15      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:ret   turn   asd   fas   dfa   def   使用   init   fda   

class People:

def __init__(self, name):
# print(‘init‘)
self.__name = name

@property
def name(self):
print(‘get‘)
return self.__name

@name.setter
def name(self, val):
print(‘set‘)
if not isinstance(val, str):
print(‘名字必须是字符串类型‘)
return
self.__name = val

@name.deleter
def name(self):
print(‘delet‘)

p = People(‘hhhh‘)
p.name # 查询
p.name = ‘safdfasfdasd‘ # 赋值
del p.name # 删除

property的使用

标签:ret   turn   asd   fas   dfa   def   使用   init   fda   

原文地址:https://www.cnblogs.com/jt925/p/10360389.html

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