일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- greedy
- node.js
- 프로그래머스
- 연습문제
- javascript
- SWEA
- React
- Python
- 코딩테스트
- 알고리즘
- 네트워크
- 자바
- 백준
- 정렬
- Java
- js
- 자바스크립트
- 프로그래머스 JS
- Baekjoon
- Typescript
- 이것이 코딩테스트다 with 파이썬
- bfs/dfs
- programmers
- 코딩테스트 입문
- Lv2
- 그리디
- CSS
- Lv1
- Next.js
- CLASS
Archives
- Today
- Total
개발야옹
[ Typescript ] interface 본문
interface
interface의 장점
- extends로 복사가 가능하다.
- 중복 선언이 가능하다. => 자동 extends가 된다.
- extends했을 때 중복 속성이 생기면 미리 error 발생
- type의 경우 중복 속성이 미리 발생하지 않는다.
interface Person{
name : string;
age : number;
}
interface User extends Person{
email : string;
phone : string;
}
let Yeonji : Person = { name : "Yeonji", age : 22 };
let Sujin : User = { name : "Sujin", age : 22, email :"sujin@mmm.com", phone : "010-2222-2222" };
type vs interface
type | interface |
중복 X | 중복 O |
&를 사용하여 확장 | extends keyword를 사용하여 확장 |
728x90
'Language > Typescript' 카테고리의 다른 글
[ Typescript ] public, private, protected, static keyword (0) | 2021.12.19 |
---|---|
[ Typescript ] rest parameter type지정 (2) | 2021.12.18 |
[ Typescript ] class type 지정 (0) | 2021.12.18 |
[ Typescript ] Litertal Types & as const (2) | 2021.12.17 |
[ Typescript ] type 선언 & type allias & type extend & 함수 type allias (0) | 2021.12.17 |