오지's blog

python에서 super()와 부모클래스이름(parent class name)의 차이점 본문

개발노트/Python

python에서 super()와 부모클래스이름(parent class name)의 차이점

오지구영ojjy90 2021. 4. 7. 14:43
728x90
반응형

참고

stackoverflow.com/questions/42413670/whats-the-difference-between-super-and-parent-class-name

 

stackoverflow.com/questions/21639788/difference-between-super-and-calling-superclass-directly

 

결론 

Parent.__init__(self)보다 super().__init__()을 써야 한다.

다중상속인경우 최상위 클래스 생성자 여러번 호출 되는 경우가 발생하기 때문에

Comments