일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- IntelliJ
- tomcat
- SQL
- Spring
- react
- NPM
- vaadin
- 공정능력
- SPC
- window
- 보조정렬
- Kotlin
- JavaScript
- mybatis
- MSSQL
- Eclipse
- table
- SSL
- Java
- es6
- plugin
- xPlatform
- R
- mapreduce
- GIT
- hadoop
- Express
- Python
- Android
- Sqoop
- Today
- Total
목록class (2)
DBILITY
이전엔 대충 function으로 했다고 한다.비슷한가? prototype이란 용어만 익숙하면 될 것 같다. 여기서 Person의 prototype, 말하자면 원형보단 조상(?)이 Object다. function Person(name) { this.name = name; this.age = '김수한무 거북이와 두루비 삼천갑자 동박삭 치치카포 사리사리센타 워리워리 세브리깡 무두셀라 구름이 허리케인에 담벼락 담벼락에 서생원 서생원에 고양이 고양이엔 바둑이 바둑이는 돌돌이'; this.sayWelcome = function () { console.log(`어서와~ ${this.name}님`); } } Person.prototype.sayGoodbye = function () { console.log(`잘가유~ ..
내부 메써드 작성할 때 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..