在Python中類別方法(class method)採用裝飾器@classmethod來定義。
我們直接看範例。 (推薦學習:Python影片教學)
class Kls(object): num_inst = 0 def __init__(self): Kls.num_inst = Kls.num_inst + 1 @classmethod def get_no_of_instance(cls): return cls.num_inst ik1 = Kls() ik2 = Kls() print ik1.get_no_of_instance() print Kls.get_no_of_instance()
類別方法用在模擬java定義多個建構函式的情況。
由於python類別中只能有一個初始化方法,不能依照不同的情況初始化類別。
coding:utf-8 class Book(object): def __init__(self, title): self.title = title @classmethod def class_method_create(cls, title): book = cls(title=title) return book @staticmethod def static_method_create(title): book= Book(title) return book book1 = Book("use instance_method_create book instance") book2 = Book.class_method_create("use class_method_create book instance") book3 = Book.static_method_create("use static_method_create book instance") print(book1.title) print(book2.title) print(book3.title)
更多Python相關技術文章,請造訪Python教學欄位學習!
以上是python什麼時候用類別方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!