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

Python day 9(1) 对实例动态绑定属性和方法

时间:2018-01-11 11:36:58      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:port   动态   ams   function   class   blog   str   添加   import   

一:未使用slots方法(都是在class定义完之后在class外部添加的):

(1)动态绑定属性  

       class Student(object):

          pass

      

>>> s = Student()
>>> s.name = ‘Michael‘ # 动态给实例绑定一个属性
>>> print(s.name)
Michael
(2)动态绑定方法
>>> def set_age(self, age): # 定义一个函数作为实例方法
...     self.age = age
...
>>> from types import MethodType
>>> s.set_age = MethodType(set_age, s) # 给实例绑定一个方法
>>> s.set_age(25) # 调用实例方法
>>> s.age # 测试结果
25

注意:给一个实例绑定的方法对另一个实例不起作用。
(3)给所有实例绑定方法 (给class绑定方法)
def set_score(self, score):
...     self.score = score
...
>>> Student.set_score = set_score

二:用__slots__来限制实例的属性
比如:限制属性只为‘name’和‘age’
class Student(object):
    __slots__ = (‘name‘, ‘age‘) # 用tuple定义允许绑定的属性名称

使用__slots__要注意,__slots__定义的属性仅对当前类实例起作用,对继承的子类是不起作用的






 

 

Python day 9(1) 对实例动态绑定属性和方法

标签:port   动态   ams   function   class   blog   str   添加   import   

原文地址:https://www.cnblogs.com/woshihuihui/p/8266740.html

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