标签:定义类 类的方法 开始 blog class 访问 dict 系统 不能
class People(object): color = ‘yellow‘ __age = 30 def say(self): self.color = ‘back‘ print self.color print self.__age ren = People() ren.say() ren.color = ‘white‘ ② ren.__dict__ People.__dict__ ③ ren.__age ①
标签:定义类 类的方法 开始 blog class 访问 dict 系统 不能
原文地址:http://www.cnblogs.com/dachenzi/p/6115451.html