Python에서 클래스 메서드는 데코레이터 @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가 여러 생성자를 정의하는 상황을 시뮬레이션하는 데 사용됩니다.
파이썬 클래스에는 초기화 메소드가 하나만 있을 수 있으므로 상황에 따라 클래스를 초기화할 수 없습니다.
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 Tutorial 칼럼을 방문하여 알아보세요!
위 내용은 Python에서 클래스 메소드를 사용해야 하는 경우의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!