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
- 쿠버네티스
- 이펙티브 자바
- 칭기즈칸의 위대한 장군 수부타이
- CSS
- 레퍼런스 복사
- 월칙
- 히든 스토리
- 모두가 기다리는 사람
- 공헌감
- node
- 도파민형 인간
- 비메모리 자원
- 부자의그릇
- 아웃풋법칙
- kubernetes
- ESG
- docker
- java
- 참조 계수
- sentry
- 수부타이
- 뉴 컨피던스
- try-with-resources
- try width resources
- colllection
- Infresh
- 과제의 분리
- Container
- apache kafka
- HTML
Archives
- Today
- Total
Hi
es2015 클래스 본문
클래스
정적 메서드(Static Method), 인스턴스 메서드(Instance Method), 생성자(Constructor)를 모두 잘 지원하고 있습니다.
class Person {
constructor(name, tel, address) {
this.name = name;
this.tel = tel;
this.address = address;
if (Person.count) { Person.count++; } else { Person.count = 1; }
}
static getPersonCount() {
return Person.count;
}
toString() {
return `name=${this.name}, tel=${this.tel}, address=${this.address}`;
}
}
var p1 = new Person('이몽룡', '010-222-3332', '경기도');
var p2 = new Person('홍길동', '010-222-3333', '서울');
console.log(p1.toString());
console.log(Person.getPersonCount());
상속도 지원합니다.
class Employee extends Person {
constructor(name, tel, address, empno, dept) {
super(name,tel,address);
this.empno = empno;
this.dept = dept;
}
toString() {
return super.toString() + `, empno=${this.empno}, dept=${this.dept}`;
}
getEmpInfo() {
return `${this.empno} : ${this.name}은 ${this.dept} 부서입니다.`;
}
}
let e1 = new Employee("이몽룡", "010-222-2121", "서울시", "A12311", "회계팀");
console.log(e1.getEmpInfo());
console.log(e1.toString());
console.log(Person.getPersonCount());
'WEB(웹) > javascript' 카테고리의 다른 글
es2015 전개 연산자 (0) | 2018.10.26 |
---|---|
javascript 모듈 (import, export) (0) | 2018.10.26 |
javascript apply (0) | 2018.10.25 |
babel 하는 법 (0) | 2018.08.10 |
slice() 메소드 (0) | 2018.07.29 |