프로그램 분류
파이썬기초44 : 생성자 한번호출되는 예제
작성자 정보
- 관리자 작성
- 작성일
컨텐츠 정보
- 1,654 조회
- 0 추천
- 목록
본문
#coding:utf-8
class Animal:
def __init__(self):
print("Animal __init__()")
class Tiger(Animal):
def __init__(self):
super().__init__() #부모 클래스의 생성자 메서드 호출
print("Tiger __init__()")
class Lion(Animal):
def __init__(self):
super().__init__() #부모 클래스의 생성자 메서드 호출
print("Lion __init__()")
class Liger(Tiger, Lion):
def __init__(self):
super().__init__()
print("Liger __init__()")
"무단배포금지: 클라우드포털(www.linux.co.kr)의 모든 강좌는 저작권에 의해 보호되는 콘텐츠입니다. 무단으로 복제하여 배포하는 행위는 금지되어 있습니다."
관련자료
-
이전
-
다음
댓글 0
등록된 댓글이 없습니다.