array1 2022.02.10 15.2강 여러가지 메서드 (나중에 중요 array) # 15.2 여러가지 메서드 ''' # 클래스 메서드 class Car: count = 0 def __init__(self,name): self.name = name Car.count += 1 # 굳이 Car.로 시작을 해야지 이용이 가능한건가; Car안에 있다고 쓰인다고 # 하기엔 너무 단순한생각이고 결과는 복잡해진다. @classmethod # 도대체 @이렇게 표현하는게 무슨 의미일까 def outcount(cls): print(cls.count) pride= Car("프라이드") korando=Car("코란도") Car.outcount() # AttributeError: type object 'Car' has no attribute 'outcount'가 나온다. # 당췌 뭐가 잘못된건지 모르겠다. .. 2022. 2. 10. 이전 1 다음