Python class variables or class variables in general

前端 未结 4 2051
难免孤独
难免孤独 2021-01-25 09:48

From Dive into Python:

Class attributes are available both through direct reference to the class and through any instance of the class.

Clas

4条回答
  •  臣服心动
    2021-01-25 10:19

    Before:

    c.counter = 0
    v.counter -> c.counter
    

    During:

    c.counter = 0
    v.counter = c.counter + 1
    

    After:

    c.counter = 0
    v.counter = 1
    

提交回复
热议问题