码迷,mamicode.com
首页 > 编程语言 > 详细

python - 类的字段

时间:2016-06-26 11:32:00      阅读:705      评论:0      收藏:0      [点我收藏+]

标签:

静态字段:保存在类里面

创建静态字段:

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 - 类的字段

标签:

原文地址:http://www.cnblogs.com/pangguoping/p/5617510.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!