일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- vscode
- 시간복잡도
- correlation coefficient
- UI한글변경
- Django의 편의성
- 매크로
- 입/출력
- scanf
- EOF
- 자료구조
- 표준 입출력
- 이분그래프
- 2557
- 엑셀
- 연결요소
- 백준
- Django란
- 입출력 패턴
- 알고리즘 공부방법
- 프레임워크와 라이브러리의 차이
- string 함수
- Django Nodejs 차이점
- c++
- 장고란
- k-eta
- double ended queue
- string 메소드
- iOS14
- 구조체와 클래스의 공통점 및 차이점
- getline
- Today
- Total
Storage Gonie
7. Python 클래스 상속 본문
상속은 다음과 같이 이뤄진다.
- class 클래스명(상속받을 부모클래스명)
- __str__함수 또한 상속이 자동적으로 이루어짐
class Text:
def __init__(self, str):
self.text = str
def __str__(self):
return "Text: " + self.text
def getLength(self):
return len(self.text)
class Article(Text): # Text(부모)클래스를 상속받은 자식클래스
def __init__(self, title, text):
self.title = title
self.text = text
'''이게 존재한다면 두번째 출력이 나오게 된다.
def __str__(self):
return "Article: %s %s" % (self.title, self.text)
'''
class User:
num_users = 0 # class 변수
def __init__(self, name):
self.numArticle = 0 # instance 변수
self.name = name
self.articles = []
User.num_users += 1
def write(self, text):
self.articles.append(text)
self.numArticle += 1
def __str__(self):
return "User: %s %s" % (self.name, [article.text for article in self.articles])
t = Article("hello", "This is some text")
t2 = Text("This is some text2")
user = User('honux')
user.write(t)
user.write(t2)
print(t, t.getLength())
print(user, user.numArticle)
'''
Text: This is some text 17
User: honux ['This is some text', 'This is some text2'] 2
Article: hello This is some text 17
User: honux ['This is some text', 'This is some text2'] 2
'''
'웹개발 > Django 웹서비스 개발(인프런)' 카테고리의 다른 글
9. (app1) Django 첫번째 프로젝트 및 앱 생성 (0) | 2019.02.08 |
---|---|
8. 장고의 MTV관계 (0) | 2019.02.08 |
6. Python 리스트 Comprehension (0) | 2019.02.07 |
5. Python 클래스 변수와 인스턴스 변수의 차이 & 함수 오버라이딩 (0) | 2019.02.07 |
4. Django 설치 및 테스트 (0) | 2019.02.07 |