本文首發於 github 部落格
如對你有幫助是我的榮幸,你的 star 是對我最大的支援!
interface VS type
大家使用 typescript 總會使用到 interface 和 type,官方規範 稍微說了下兩者的區別
- An interface can be named in an extends or implements clause, but a type alias for an object type literal cannot.
- An interface can have multiple merged declarations, but a type alias for an object type literal cannot.
但是沒有太具體的例子。
明人不說暗話,直接上區別。
相同點
都可以描述一個物件或者函式
interface
interface User {
name: string
age: number
}
interface SetUser {
(name: string, age: number): void;
}
複製程式碼
type
type User = {
name: string
age: number
};
type SetUser = (name: string, age: number): void;
複製程式碼
都允許擴充(extends)
interface 和 type 都可以擴充,並且兩者並不是相互獨立的,也就是說 interface 可以 extends type, type 也可以 extends interface 。 雖然效果差不多,但是兩者語法不同。
interface extends interface
interface Name {
name: string;
}
interface User extends Name {
age: number;
}
複製程式碼
type extends type
type Name = {
name: string;
}
type User = Name & { age: number };
複製程式碼
interface extends type
type Name = {
name: string;
}
interface User extends Name {
age: number;
}
複製程式碼
type extends interface
interface Name {
name: string;
}
type User = Name & {
age: number;
}
複製程式碼
不同點
type 可以而 interface 不行
- type 可以宣告基本型別別名,聯合型別,元組等型別
// 基本型別別名
type Name = string
// 聯合型別
interface Dog {
wong();
}
interface Cat {
miao();
}
type Pet = Dog | Cat
// 具體定義陣列每個位置的型別
type PetList = [Dog, Pet]
複製程式碼
- type 語句中還可以使用 typeof 獲取例項的 型別進行賦值
// 當你想獲取一個變數的型別時,使用 typeof
let div = document.createElement('div');
type B = typeof div
複製程式碼
- 其他騷操作
type StringOrNumber = string | number;
type Text = string | { text: string };
type NameLookup = Dictionary<string, Person>;
type Callback<T> = (data: T) => void;
type Pair<T> = [T, T];
type Coordinates = Pair<number>;
type Tree<T> = T | { left: Tree<T>, right: Tree<T> };
複製程式碼
interface 可以而 type 不行
interface 能夠宣告合併
interface User {
name: string
age: number
}
interface User {
sex: string
}
/*
User 介面為 {
name: string
age: number
sex: string
}
*/
複製程式碼
總結
一般來說,如果不清楚什麼時候用interface/type,能用 interface 實現,就用 interface , 如果不能就用 type 。其他更多詳情參看 官方規範文件