栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

浅谈python变量

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

浅谈python变量

1.类变量,可以使用类名直接访问

2.实例变量,需要创建实例后,使用实例对象访问

3.类方法,可以访问类变量,可通过类名或者实例名访问

4.静态方法,不能访问类变量和实例变量,可通过类名或者实例名访问

class Cat:
    variable = {"波斯猫": 20, "英短": 30}  # 类变量

    def __init__(self, color, weight):  # 实例变量
        self.color = color
        self.weight = weight

    @classmethod
    def cal_variable(cls):
        num = 0
        for values in cls.variable.values():
            num = values + num
        return num

    @staticmethod
    def get_cat_weight():
        return "This is a staticmethod"


if __name__ == "__main__":
    print("类变量:", Cat.variable)
    cat1 = Cat('YELLOW', 18)
    print("实例属性:", cat1.color)
    print("类方法,通过类访问:", Cat.cal_variable())
    print("类方法,通过实例访问:", cat1.cal_variable())
    print("静态方法,通过类访问:", Cat.get_cat_weight())
    print("静态方法,通过实例访问:", cat1.get_cat_weight())



转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/886808.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号