概述
面向对象高级编程
我们定义一个class,可对其的实例绑定属性:
>>> class Student(object):
pass
>>> s = Student()
>>> s.name = 'M'
>>> print s.name
M
也可以绑定方法(注意绑定方法的格式):
>>> def set_age(self, age):
self.age = age
>>> from types import MethodType
>>> s.set_age = MethodType(set_age, s, Student)
>>> s.set_age(25)
>>> s.age
25
但是给一个实例绑定的方法对其他实例并不起作用:
>>> s2 = Student()
>>> s2.get_age(25)
Traceback (most recent call last):
File "<pyshell#17>", line 1, in <module>
s2.get_age(25)
AttributeError: 'Student' object has no attribute 'get_age'
最后
以上就是有魅力水蜜桃为你收集整理的python学习笔记之(八)的全部内容,希望文章能够帮你解决python学习笔记之(八)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复