[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

ํƒ€์ž…์Šคํฌ๋ฆฝํŠธ๋Š” ์ถ”๋ก ๋˜๋Š” ํƒ€์ž…๋“ค์„ ์œ ๋‹ˆ์˜จ์œผ๋กœ ์ง€์ •ํ•ฉ๋‹ˆ๋‹ค.

์ถœ์ฒ˜

Leave a comment