码迷,mamicode.com
首页 > 编程语言 > 详细

python面向对象高级编程

时间:2018-06-08 12:15:12      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:ams   code   obj   param   UNC   属性   class   word   允许   

1.绑定方法

给所有实例都绑定方法,可以给class绑定方法:

>>> def set_score(self, score):

... self.score = score

...

>>> Student.set_score = set_score

给class绑定方法后,所有实例均可调用。

2.使用__slots__

但是,如果我们想要限制实例的属性怎么办?比如,只允许对Student实例添加nameage属性。

为了达到限制的目的,Python允许在定义class的时候,定义一个特殊的__slots__变量,来限制该class实例能添加的属性。

class Student(object):

   __slots__ = (‘name‘, ‘age‘) # 用tuple定义允许绑定的属性名称

 

python面向对象高级编程

标签:ams   code   obj   param   UNC   属性   class   word   允许   

原文地址:https://www.cnblogs.com/zhouqianwei/p/9154451.html

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