16 ##### 適合類方法的場景:方法內部如果需要使用當前類的話

jhchena發表於2024-09-27
class Info:

    def __init__(self, name):
        self.name = name  # 例項變數

    @classmethod
    def fetch(cls):
        print(cls)


Info.fetch()  # 呼叫靜態方法,不需要建立物件,也不需傳self引數

相關文章