标签:
静态字段:保存在类里面
创建静态字段:
class Foo: CC = 123 # 字段(静态字段),保存在类里 def __init__(self): self.name = ‘alex‘ def show(self): print(self.name)
普通字段:保存到对象里
创建普通字段
class Foo: def __init__(self): self.name = ‘alex‘ #普通字段, 保存在对象里面 def show(self): print(self.name)
字段访问:
class Province: country = "中国" def __init__(self,name): self.name = name hb = Province(‘河北‘)
标签:
原文地址:http://www.cnblogs.com/pangguoping/p/5617510.html