일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 성공
- Kotlin Class
- Kotlin 클래스 속성정의
- 파이썬 반복문
- 파이썬 장고
- NextJs
- Kotlin 클래스
- 자바 기본타입
- 다중조건문
- Python Class
- 좋은글
- Variable declaration
- Kotlin else if
- 강제 타입변환
- 파이썬 클래스
- github
- activate 오류
- 도전
- 클래스 속성
- 파이썬
- Python
- 파이썬 제어문
- Kotlin If
- django virtualenv
- 넥스트js
- 희망
- 장고 가상환경
- git
- python Django
- Kotlin 조건문
Archives
- Today
- Total
키모스토리
#6 Generic 본문
반응형
함수 매개변수 Generic
// Generic
function getSize<T>(arr: T[]): number {
return arr.length;
}
const arr1 = [1,2,3];
getSize<number>(arr1); // 3
const arr2 = ["a","b","c"];
getSize<string>(arr2); // 3
const arr3 = [false, true, false];
getSize<boolean>(arr3); // 3
const arr4 = [{}, {},{name: "Tom"}];
getSize<object>(arr4); // 3
interface Generic
// 인터페이스 맴버변수 타입을 generic으로 선언하는 예
interface Mobile<T> {
name: string;
price: number;
option: T; // string, object... 입력가능
}
const m1: Mobile<object> = {
name: "s21",
price: 1000,
option: {
color: "red",
coupon: false,
},
};
const m2: Mobile<{color: string; coupon: boolean}> = {
name: "s21",
price: 1000,
option: {
color: "red",
coupon: false,
},
};
const m3: Mobile<string> = {
name: "s20",
price: 900,
option: "good",
};
// Generic
interface User {
name: string;
age: number;
}
interface Car {
name: string;
color: string;
}
interface Book {
price: number;
}
const user: User = {name: "a", age:10};
const car : Car = {name:"bmw", color:"red"};
const book : Book = {price: 3000};
// 함수에 전달되는 객체를 Generic으로 전달
function showName<T extends {name: string}>(data: T): string {
return data.name;
}
showName(user);
showName(car);
// showName(book);
반응형
'Web Devlopment > TypeScript' 카테고리의 다른 글
#7 유틸리티 타입 Utility Types (0) | 2025.03.27 |
---|---|
#5 클래스 (class) (0) | 2025.03.26 |
#4 리터럴, 유니온/교차 타입 (0) | 2025.03.26 |
#3 함수 (function) (0) | 2025.03.26 |
#2 인터페이스(interface) (0) | 2025.03.26 |