4.6.1 스태틱 멤버
스태틱 속성
class Counter {
static count: number = 0;
}
console.log(Counter.count); // 0스태틱 메소드
class Counter {
static count: number = 0;
static increaseCount() {
Counter.count += 1;
}
static getCount() {
return Counter.count;
}
}
Counter.increaseCount();
console.log(Counter.getCount()); // 1
Counter.increaseCount();
console.log(Counter.getCount()); // 2Last updated