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
- mybatis
- Python
- 공정능력
- R
- SPC
- es6
- IntelliJ
- react
- xPlatform
- Android
- vaadin
- mapreduce
- Spring
- GIT
- NPM
- Kotlin
- Sqoop
- tomcat
- 보조정렬
- SQL
- Express
- window
- hadoop
- Eclipse
- plugin
- MSSQL
- JavaScript
- Java
- SSL
- table
Archives
- Today
- Total
반응형
목록클래스 (1)
DBILITY
python class
내부 메써드 작성할 때 argument로 self는 기본인가? __init__는 생성자, __del__은 소멸자겠지(?) ####################################################################################### class Avenger: def __init__(self, name="", role="", tribe=""): # initializer, constructor? self.name = name self.role = role self.tribe = tribe print(f'{self} initialization') def __del__(self): print(f'{self} Destructor called, {self} delete..
python
2021. 8. 19. 15:29
반응형