TypeScript interface 和 type 比較

使用TypeScript的時候,一定會遇到interfacetype aliases 的比較速那。
官方有兩句話Because [an ideal property of software is being open to extension](https://en.wikipedia.org/wiki/Open/closed_principle), you should always use an interface over a type alias if possible.On the other hand, if you can’t express some shape with an interface and you need to use a union or tuple type, type aliases are usually the way to go存崖,就是要我們一般情況下使用interface荸实,當interface不能滿足我們的需求時工坊,使用type蜗帜。
下面通過一些例子來比較兩者的異同

1. Objects / Functions

兩者都可以用來描述對象或函數越妈,但是語法不同。

interface Point {
  x: number;
  y: number;
}

interface SetPoint {
  (x: number, y: number): void;
}
type Point = {
  x: number;
  y: number;
};

type SetPoint = (x: number, y: number) => void;

2. Other Types

interface不同钮糖,type也可以用于其他類型梅掠,例如原始類型、聯合類型店归、元祖類型阎抒。

// primitive
type Name = string;

// object
type PartialPointX = { x: number; };
type PartialPointY = { y: number; };

// union
type PartialPoint = PartialPointX | PartialPointY;

// tuple
type Data = [number, string];

3. Extend 繼承

兩者都可以被繼承,但是同樣的消痛,語法不同且叁。

  • interface extends interface
interface PartialPointX { x: number; }
interface Point extends PartialPointX { y: number; }
  • type alias extends type alias
type PartialPointX = { x: number; };
type Point = PartialPointX & { y: number; };
  • interface extends type alias
type PartialPointX = { x: number; };
interface Point extends PartialPointX { y: number; }
  • type alias extends interface
interface PartialPointX { x: number; }
type Point = PartialPointX & { y: number; };

4. Implements 實現

一個class對于interfacetype alias的實現是一樣的。但是秩伞,classinterface被認為是靜態(tài)藍圖(static blueprints)逞带,因此欺矫,他們不能 Implements / extend 聯合類型的 type alias

interface Point {
    x: number;
    y: number;
}

class SomePoint implements Point {
    x: 1;
    y: 2;
}

type Point2 = {
    x: number;
    y: number;
};

class SomePoint2 implements Point2 {
    x: 1;
    y: 2;
}

type PartialPoint = { x: number; } | { y: number; };
// ? A class can only implement an object type or intersection of object types with statically known members.t
class SomePartialPoint implements PartialPoint {
    x: 1;
    y: 2;
}

4. Declaration Merging (聲明合并)

// These two declarations become:
// interface Point { x: number; y: number; }
interface Point { x: number; }
interface Point { y: number; }

const point: Point = { x: 1, y: 2 };

【更多】https://www.typescriptlang.org/docs/handbook/advanced-types.html

【參考】typescript-interfaces-vs-types

?著作權歸作者所有,轉載或內容合作請聯系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市展氓,隨后出現的幾起案子穆趴,更是在濱河造成了極大的恐慌,老刑警劉巖遇汞,帶你破解...
    沈念sama閱讀 212,686評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件未妹,死亡現場離奇詭異,居然都是意外死亡空入,警方通過查閱死者的電腦和手機络它,發(fā)現死者居然都...
    沈念sama閱讀 90,668評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來歪赢,“玉大人化戳,你說我怎么就攤上這事÷窨” “怎么了迂烁?”我有些...
    開封第一講書人閱讀 158,160評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長递鹉。 經常有香客問我盟步,道長,這世上最難降的妖魔是什么躏结? 我笑而不...
    開封第一講書人閱讀 56,736評論 1 284
  • 正文 為了忘掉前任却盘,我火速辦了婚禮,結果婚禮上媳拴,老公的妹妹穿的比我還像新娘黄橘。我一直安慰自己,他們只是感情好屈溉,可當我...
    茶點故事閱讀 65,847評論 6 386
  • 文/花漫 我一把揭開白布塞关。 她就那樣靜靜地躺著,像睡著了一般子巾。 火紅的嫁衣襯著肌膚如雪帆赢。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 50,043評論 1 291
  • 那天线梗,我揣著相機與錄音椰于,去河邊找鬼。 笑死仪搔,一個胖子當著我的面吹牛瘾婿,可吹牛的內容都是我干的。 我是一名探鬼主播,決...
    沈念sama閱讀 39,129評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼偏陪,長吁一口氣:“原來是場噩夢啊……” “哼抢呆!你這毒婦竟也來了?” 一聲冷哼從身側響起笛谦,我...
    開封第一講書人閱讀 37,872評論 0 268
  • 序言:老撾萬榮一對情侶失蹤抱虐,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后揪罕,有當地人在樹林里發(fā)現了一具尸體,經...
    沈念sama閱讀 44,318評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡宝泵,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,645評論 2 327
  • 正文 我和宋清朗相戀三年好啰,在試婚紗的時候發(fā)現自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片儿奶。...
    茶點故事閱讀 38,777評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡框往,死狀恐怖,靈堂內的尸體忽然破棺而出闯捎,到底是詐尸還是另有隱情椰弊,我是刑警寧澤,帶...
    沈念sama閱讀 34,470評論 4 333
  • 正文 年R本政府宣布瓤鼻,位于F島的核電站秉版,受9級特大地震影響,放射性物質發(fā)生泄漏茬祷。R本人自食惡果不足惜清焕,卻給世界環(huán)境...
    茶點故事閱讀 40,126評論 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望祭犯。 院中可真熱鬧秸妥,春花似錦、人聲如沸沃粗。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,861評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽最盅。三九已至突雪,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間涡贱,已是汗流浹背挂签。 一陣腳步聲響...
    開封第一講書人閱讀 32,095評論 1 267
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留盼产,地道東北人饵婆。 一個月前我還...
    沈念sama閱讀 46,589評論 2 362
  • 正文 我出身青樓,卻偏偏與公主長得像,于是被迫代替她去往敵國和親侨核。 傳聞我的和親對象是個殘疾皇子草穆,可洞房花燭夜當晚...
    茶點故事閱讀 43,687評論 2 351

推薦閱讀更多精彩內容