15 ##### 適合繫結方法的場景:在物件中封裝值,在方法中讀取物件的值

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

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

    def fetch(self):
        print(123, self.name)

    @staticmethod
    def push():
        pass

    @classmethod
    def pull(cls):
        pass

obj = Info()  # 建立物件目的,就是把資料封裝進去。當在執行fetch的時候,去讀取物件中內容(如self中的內容,)
# 後面使用傳入的資料,建議使用繫結方法)
obj.fetch()

相關文章