All Posts tagged as "Class"

타입스크립트 - Class와 상속

Class란 Class란 어떤 것을 나타내기 위해 메서드(functions)와 필드(fields)를 가진 객체를 정의하는 청사진(blueprint)이다. Basic Inheritance(상속) car는 Car의 인스턴스이고, Car는 Vehicle을 상속받았으므로 부모 클래스인 Vehicle…