摘要: # Python 类变量 除了定义对象属性外,Python 也可以定义类变量 #### 示例 ```python class ClassVariable: __object_count = 0 def __init__(self, name: str): self.name = name Class 阅读全文
posted @ 2023-08-15 19:01 软匠 阅读(47) 评论(0) 推荐(0)