Python类的继承和私有变量
四周二次课(11月7日)
8.4 类的重写
8.5 类的私有变量
类分为公用属性和私有属性
公用属性在类里面和外面都可以调用
私有属性是不可以在类以外调用的。
1 class People(object): 2 color = 'yellow' 3 __age = 30 4 5 def think(self): 6 self.color = 'black' 7 print "I am a %s" % self.color 8 print "I am a thinker" 9 print self.__age 10 ren = People() 11 ren.color = "白色人" 12 print ren.color 13 ren.think()
类有属性和方法
类先要实例化才可以调用。