摘要: python中的get、set函数:class AA: @property def num(self): return self._num @num.setter def num(self,value): self._num = value#不能是... 阅读全文
posted @ 2015-11-04 22:17 helloWorld我来了 阅读(146) 评论(0) 推荐(0) 编辑
摘要: python可以给class实例绑定属性和方法,例:s = Student()s.age =10#动态属性def sayHello(self): print "hello"from types import MethodTypes.sayHello = MethodType(sayHello,... 阅读全文
posted @ 2015-11-04 16:31 helloWorld我来了 阅读(148) 评论(0) 推荐(0) 编辑