class Provice: # 静态字段,类中 country = "China" def __init__(self, name): temp = "xxx" # 普通字段,对象中(self就是对象) self.name = name # 普通方法,类中 def show(self): print("show") hebei = Provice("河北") henan = Provice("河南") # 将每一个普通字段中要重复的东西,直接保存在开头,作为静态字段,只要写一份就可以了。 # 在class里面只保存一次就可以给所有的方法用的字段叫静态字段 print(Provice.country)
在class里面只保存一次就可以给所有的方法用的字段叫静态字段
原文地址:https://www.cnblogs.com/xuwenwei/p/9784122.html
时间: 2024-10-07 23:07:17