python类属性的概念
1、类属性是从属于类对象的属性,也称为类变量。类属性从属于类对象,可以被所有实例对象共享。
类属性定义方式为:
class 类名:
类属性名 = 初始值
2、在类中或者类外围,可以通过类名.类变量名类读写。
实例
class Test(object):v = 0.1
def test(self):
pass
>Test.__dict__
>{'__module__': '__main__', '__dict__': <attribute '__dict__' of 'Test' objects>, 'v': 0.1, 'test': <function test at 0x2ee3cf8>, '__weakref__': <attribute '__weakref__' of 'Test' objects>, '__doc__': None}
以上就是python类属性的概念,希望对大家有所帮助。更多Python学习指路:python基础教程
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
以上是 python类属性的概念 的全部内容, 来源链接: utcz.com/z/545177.html