typescript1 TypeScript - Class 클래스는 객체를 정의하기 위한 청사진 역할을 하며, 속성과 메서드를 포함할 수 있습니다.(*청사진이란 미례 계획, 구상 등을 말하는 겁니다.) 기본 구조class 클래스이름 { // 필드(속성) 선언 propertyName: 타입; // 생성자 constructor(매개변수: 타입) { this.propertyName = 매개변수; } // 메서드 methodName(): 반환타입 { return this.propertyName; }} 1. 선언과 사용class Person { name: string; age: number; constructor(name: string, age: number) { this.name = name; this.age = age; }.. 2024. 11. 30. 이전 1 다음