python - 类的字段
Posted UnixFBI 运维特工
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python - 类的字段相关的知识,希望对你有一定的参考价值。
静态字段:保存在类里面
创建静态字段:
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(‘河北‘)
以上是关于python - 类的字段的主要内容,如果未能解决你的问题,请参考以下文章