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
- 자바스크립트 node
- 보안뉴스
- 자바스크립트 element api
- GIT
- oracle
- javascript
- 보안뉴스한줄요약
- 자바스크립트 객체
- python
- 자바스크립트 기본 문법
- 보안뉴스 요약
- 깃허브
- 카카오프로젝트
- Oracle SQL
- 자바스크립트 jQuery
- 카카오프로젝트100
- 랜섬웨어
- 자바스크립트 API
- 카카오프로젝트 100
- php
- ES6
- 보안뉴스요약
- oracle db
- 다크웹
- numpy
- 자바스크립트 prototype
- 파이썬
- 자바스크립트
- 보안뉴스 한줄요약
- 오라클
Archives
- Today
- Total
목록python 다형성 (1)
FU11M00N

- 다형성 같은 모양의 코드가 다른 동작을 하는 것 코드의 양을 줄이고, 여러 객체 타입을 하나의 타입으로 관리가 가능하여 유지 보수에 좋다. 메소드 오버라이딩도 다형성의 한 예 class Person: def __init__(self,name): self.name = name def work(self): print(self.name + "works hard") class Student(Person): def work(self): print(self.name + "studies hard") class Engineer(Person): def work(self): print(self.name + "develope something") student = Student("Dave") developer = Eng..
Programming/Python
2020. 11. 24. 15:29