# 自己访问自己的成员 # 类中的方法访问的时候,要先创建对象 class Provice: country = "中国" def __init__(self, name): self.name = name def show(self): print("show") # 通过类访问有:静态字段 print(Provice.country) # 访问show时, 先创建对象 obj = Provice("ALEX") obj.show() # 通过对象访问:普通字段,类的方法 print(obj.name)
运行结果:
中国
show
ALEX