강좌
클라우드/리눅스에 관한 강좌입니다.
프로그램 분류

파이썬기초44 : 생성자 한번호출되는 예제

작성자 정보

  • 관리자 작성
  • 작성일

컨텐츠 정보

본문

#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__()")

관련자료

댓글 0
등록된 댓글이 없습니다.

공지사항


뉴스광장


  • 현재 회원수 :  60,037 명
  • 현재 강좌수 :  35,810 개
  • 현재 접속자 :  109 명