클래스이름#클래스변수
Python07 :: python 클래스 이름, 클래스 변수
Python07 :: python 클래스 이름, 클래스 변수
2020.08.14self.records_read = Metrics.counter(self.__class__, 'recordsRead') 모르는 문법이 나와서 정리합니다. 클래스 내부에서 self._ _class_ _._ _name_ _ 하게 되면 해당 name 이 붙어있는 class name을 참조하게 됩니다. 3가지 개념이 존재하는데 1. 클래스 이름 2. 클래스 변수 3. 인스턴스 변수 각각에 대해서 예제 코드로 살펴보겠습니다. Code : class House: def __init__(self, str_price): self.str_price = str_price def info(self): print("class name:", self.__class__.__name__) # // 클래스이름을 출력한다 print(..