class

[참고] 클래스 (Class) // Class class Car4 { color: string; constructor(color: string){ this.color = color; } start(){ console.log("start"); } } const bmw = new Car4("red"); 자바스크립트와 달리 타입스크립트에서는 클래스 작성 시 멤버 변수는 미리 선언해주어야 함. 그렇지만 멤버 변수를 미리 선언하지 않으려면 다음과 같은 방법 이용. 접근 제한자 이용 readonly 키워드 사용 접근 제한자(Access modifier) class Car4 { public name: string = "car"; color: string; constructor(color: string){ this.c..
딜레이레이
'class' 태그의 글 목록