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 - 类的字段的主要内容,如果未能解决你的问题,请参考以下文章

python面相对象进阶

python - 类的字段

字段 | 方法 | 属性 | 类的成员 | Python

Python学习:17.Python面向对象(属性(特性),成员修饰符,类的特殊成员)

Python学习 :面向对象 -- 类的成员

python面向对象编程(下)