class A: v1 = 100 # 類變數 def __init__(self): self.v2 = 200 # 成員變數 v3 = 300 # 區域性變數類變數可以由類名統一修改: A.v1 = 300# 則每一個A ...
確定! 回上一頁