Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- sharonchoi
- 치앙마이
- 신종코로나
- 미중
- 웨일즈
- 창궐
- 어서와한국은처음이지
- 최성재
- 중국외교부
- 우한
- 봉준호감독통역
- 전염병
- 봉준호감독통역사
- 코로나바이러스
- everybody wants you
- 진짜영웅
- Bolton
- 우한코로나
- wuhan
- parasite
- 코로나
- cnn
- 필리핀사망
- 확진자수
- 정은경 본부장님
- red hearse
- 조현병
- 우한코로나바이러스
- 코로나19
- 우한 코로나
Archives
- Today
- Total
오지's blog
dunder와 magic메소드 본문
728x90
반응형
# double underscore __ == dunder -> 객체에서 특별한 행위를 했을때 내부적으로 호출하는 메소드 + 의 경우 __add__()호출
class Person:
def __init__(self, name, age):
self.name = name
self.age = age
def __del__(self):
print("Object is being deconstructed")
p = Person("Kelly", 35)
class Vector:
def __init__(self, x, y):
self.x = x
self.y = y
v1 = Vector(10, 20)
v2 = Vector(50, 50)
# v3 = v1 + v2 # __add__함수를 정의하지 않은 상태에서 두 객체를 더하면 에러가 발생
# TypeError: unsupported operand type(s) for +: 'Vector' and 'Vector'
# __init(), __del__ 명시적으로 호출하지 않았지만 객체가 생성되고 소멸되는 과정에서 자동으로 호출
class Vector1:
def __init__(self, x, y):
self.x = x
self.y = y
def __add__(self, other):
return Vector1(self.x+other.x, self.y+other.y)
def __repr__(self):
return f"X: {self.x}, Y: {self.y}"
def __call__(self):
return f"{self} obj CALLED"
v3 = Vector1(10, 20)
v4 = Vector1(50, 50)
v5 = v3 + v4
print(v3.x, v3.y)
print(v5())
Reference.
https://www.youtube.com/watch?v=KSiRzuSx120&list=PL7yh-TELLS1FuqLSjl5bgiQIEH25VEmIc
'개발노트 > Python' 카테고리의 다른 글
s3에서 가장 최근 업로드한 파일 찾기 - sorted 연습 python (0) | 2023.04.13 |
---|---|
excel에서 dataframe형식으로 읽을때 병합쎌이 column이름일때 (0) | 2023.04.12 |
개발자 선배 언니를 만나고 나서 (0) | 2022.09.28 |
Worksheet index 0 is invalid, 0 worksheets found 혹은 openpyxl AttributeError: 'NoneType' object has no attribute 'rows' (0) | 2022.08.24 |
xlsx파일 읽을때 zipfile.BadZipFile: File is not a zip file 에러 발생 (0) | 2022.08.11 |
Comments