[TypeScript] ํ์ ์ถ๋ก (Type Inference)
๐ ํ์ ์ถ๋ก (Type Inference)
ํ์ ์ถ๋ก ์ ํ์ ์คํฌ๋ฆฝํธ๊ฐ ์ฝ๋๋ฅผ ํด์ํด ๋๊ฐ๋ ๋์์ ๋ปํฉ๋๋ค.
let x = 3;
ํ์
์คํฌ๋ฆฝํธ๋ x
์ ํ์
์ ์ง์ ํ์ง ์์๋ number
๋ผ๋ ํ์
์ ์ถ๋ก ํฉ๋๋ค.
๋ณ์๋ฅผ ์ ์ธํ๊ฑฐ๋ ์์ฑ, ์ธ์์ ๊ธฐ๋ณธ ๊ฐ, ํจ์์ ๋ฐํ ๊ฐ ๋ฑ์ ์ค์ ํ ๋๋ ํ์ ์ถ๋ก ์ด ์ผ์ด๋ฉ๋๋ค.
๐ ์ธํฐํ์ด์ค์ ์ ๋ค๋ฆญ์ ์ด์ฉํ ํ์ ์ถ๋ก
interface Dropdown<T> {
value: T;
title: string;
}
interface DertailedDropdown<K> extends Dropdown<K> {
description: string;
tag: K;
}
var detailedItem: DertailedDropdown<string> = {
title: "abc",
description: "ab",
value: "a",
tag: "a",
};
๐ Best Common Type ์ถ๋ก ๋ฐฉ์
ํ์ ์คํฌ๋ฆฝํธ๊ฐ ์ถ๋ก ํ๋ ๊ฐ์ฅ ๊ทผ์ ํ ํ์ ์ Best Common Type์ด๋ผ๊ณ ํฉ๋๋ค.
let arr = [0, 1, null];
// type: number | null
ํ์ ์คํฌ๋ฆฝํธ๋ ์ถ๋ก ๋๋ ํ์ ๋ค์ ์ ๋์จ์ผ๋ก ์ง์ ํฉ๋๋ค.
๐ฌ ์ต์ ๋๊ธ