摘要:
python中的get、set函数:class AA: @property def num(self): return self._num @num.setter def num(self,value): self._num = value#不能是... 阅读全文
摘要:
python可以给class实例绑定属性和方法,例:s = Student()s.age =10#动态属性def sayHello(self): print "hello"from types import MethodTypes.sayHello = MethodType(sayHello,... 阅读全文