最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

Typescript 中的 interface 和 type 到底有什么區(qū)別詳解

來源:懂視網(wǎng) 責(zé)編:小采 時間:2020-11-27 21:55:03
文檔

Typescript 中的 interface 和 type 到底有什么區(qū)別詳解

Typescript 中的 interface 和 type 到底有什么區(qū)別詳解:interface VS type 大家使用 typescript 總會使用到 interface 和 type,官方規(guī)范 稍微說了下兩者的區(qū)別 An interface can be named in an extends or implements clause, but a type alias for an object
推薦度:
導(dǎo)讀Typescript 中的 interface 和 type 到底有什么區(qū)別詳解:interface VS type 大家使用 typescript 總會使用到 interface 和 type,官方規(guī)范 稍微說了下兩者的區(qū)別 An interface can be named in an extends or implements clause, but a type alias for an object

interface VS type

大家使用 typescript 總會使用到 interface 和 type,官方規(guī)范 稍微說了下兩者的區(qū)別

  • 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.
  • 但是沒有太具體的例子。

    明人不說暗話,直接上區(qū)別。

    相同點

    都可以描述一個對象或者函數(shù)

    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 可以聲明基本類型別名,聯(lián)合類型,元組等類型

    // 基本類型別名
    type Name = string
    
    // 聯(lián)合類型
    interface Dog {
     wong();
    }
    interface Cat {
     miao();
    }
    
    type Pet = Dog | Cat
    
    // 具體定義數(shù)組每個位置的類型
    type PetList = [Dog, Pet]
    
    

    type 語句中還可以使用 typeof 獲取實例的 類型進(jìn)行賦值

    // 當(dāng)你想獲取一個變量的類型時,使用 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 
    }
    */
    
    

    總結(jié)

    一般來說,如果不清楚什么時候用interface/type,能用 interface 實現(xiàn),就用 interface , 如果不能就用 type 。其他更多詳情參看 官方規(guī)范文檔

    聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

    文檔

    Typescript 中的 interface 和 type 到底有什么區(qū)別詳解

    Typescript 中的 interface 和 type 到底有什么區(qū)別詳解:interface VS type 大家使用 typescript 總會使用到 interface 和 type,官方規(guī)范 稍微說了下兩者的區(qū)別 An interface can be named in an extends or implements clause, but a type alias for an object
    推薦度:
    標(biāo)簽: 中的 的區(qū)別 type
    • 熱門焦點

    最新推薦

    猜你喜歡

    熱門推薦

    專題
    Top