Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 자바스크립트
- 자바스크립트 prototype
- 보안뉴스 요약
- 자바스크립트 객체
- 보안뉴스
- 자바스크립트 기본 문법
- javascript
- php
- 보안뉴스요약
- Oracle SQL
- 보안뉴스 한줄요약
- oracle
- 카카오프로젝트
- ES6
- 자바스크립트 element api
- oracle db
- 카카오프로젝트100
- 오라클
- 카카오프로젝트 100
- 랜섬웨어
- python
- 자바스크립트 node
- numpy
- 다크웹
- GIT
- 파이썬
- 깃허브
- 자바스크립트 API
- 자바스크립트 jQuery
- 보안뉴스한줄요약
Archives
- Today
- Total
FU11M00N
[Python]다중 상속 본문
- 다중 상속
• 여러 개의 클래스로부터 상속받는 경우
파이썬은 다중 상속을 지원하고 부모 클래스에 동일한 메소드나 속성이 있을 때는 왼쪽에서부터 우선권 을 부여 합니다.
class 기반 클래스명 1:
코드
class 기반 클래스명 2:
코드
Class 파생 클래스명(기반 클래스명 1, 기반 클래스명 2):
코드
여러 개의 클래스로부터 상속받는 경우
class Person:
def greeting(self):
print("안녕하세요")
class University:
def manage_credit(self):
print('학점관리')
class Undergraduate(Person, University):
def study(self):
print("공부하기")
sunja = Undergraduate()
sunja.greeting()
sunja.manage_credit()
sunja.study()
class Person:
def sleep(self):
print('sleep')
class Student(Person):
def study(self):
print("Study hard")
def play(self):
print("play with friends")
class Worker(Person):
def work(self):
print("Work hard")
def play(self):
print("drinks alone")
# 다중 상속
class PartTimer(Student, Worker):
def find_job(self):
print("Find a job")
parttimer1 = PartTimer()
parttimer1.study()
parttimer1.work()
parttimer1.play()
play 메소드가 Student클래스와 Worker 클래스 에서 2개인데 왼쪽에있는것이 우선이라 Student의 method가 상속된다.
'Programming > Python' 카테고리의 다른 글
[Python] 다형성 (0) | 2020.11.24 |
---|---|
[Python] 추상 클래스 (0) | 2020.11.24 |
[Python] 상속, 메소드 오버라이딩 (0) | 2020.11.17 |
[Python] 파이썬으로 구현한 연봉 인상율 프로그램 (0) | 2020.11.17 |
[Python] 정적 메소드 (0) | 2020.11.17 |
Comments