TypeScript接口

接口

TypeScript 的核心原則之一是對值所具有的結(jié)構(gòu)進行類型檢查。它有時被稱做“鴨式辨型法”或“結(jié)構(gòu)性子類型化”。 在 TypeScript 里,接口的作用就是為這些類型命名和為你的代碼或第三方代碼定義契約。

接口初探

下面通過一個簡單示例來觀察接口是如何工作的:

function printLabel(labelledObj: { label: string }) {
  console.log(labelledObj.label)
}

let myObj = { size: 10, label: 'Size 10 Object' }
printLabel(myObj)

類型檢查器會查看 printLabel 的調(diào)用。printLabel 有一個參數(shù),并要求這個對象參數(shù)有一個名為 label 類型為 string 的屬性。 需要注意的是,我們傳入的對象參數(shù)實際上會包含很多屬性,但是編譯器只會檢查那些必需的屬性是否存在,以及其類型是否匹配。 然而,有些時候 TypeScript 卻并不會這么寬松,我們下面會稍做講解。

下面我們重寫上面的例子,這次使用接口來描述:必須包含一個label 屬性且類型為 string

interface LabelledValue {
  label: string
}

function printLabel(labelledObj: LabelledValue) {
  console.log(labelledObj.label)
}

let myObj = {size: 10, label: 'Size 10 Object'}
printLabel(myObj)

LabelledValue 接口就好比一個名字,用來描述上面例子里的結(jié)構(gòu)。 它代表了有一個 label 屬性且類型為string 的對象。 需要注意的是,我們在這里并不能像在其它語言里一樣,說傳給 printLabel 的對象實現(xiàn)了這個接口。我們只會去關注值的外形。 只要傳入的對象滿足上面提到的必要條件,那么它就是被允許的。

還有一點值得提的是,類型檢查器不會去檢查屬性的順序,只要相應的屬性存在并且類型也是對的就可以。

可選屬性

接口里的屬性不全都是必需的。 有些是只在某些條件下存在,或者根本不存在。例如給函數(shù)傳入的參數(shù)對象中只有部分屬性賦值了。

interface Square {
  color: string,
  area: number
}

interface SquareConfig {
  color?: string
  width?: number
}

function createSquare (config: SquareConfig): Square {
  let newSquare = {color: 'white', area: 100}
  if (config.color) {
    newSquare.color = config.color
  }
  if (config.width) {
    newSquare.area = config.width * config.width
  }
  return newSquare
}

let mySquare = createSquare({color: 'black'})

帶有可選屬性的接口與普通的接口定義差不多,只是在可選屬性名字定義的后面加一個 ? 符號。

可選屬性的好處之一是可以對可能存在的屬性進行預定義,好處之二是可以捕獲引用了不存在的屬性時的錯誤。 比如,我們故意將 createSquare 里的 color 屬性名拼錯,就會得到一個錯誤提示:

interface Square {
  color: string,
  area: number
}

interface SquareConfig {
   color?: string;
   width?: number;
}
 
function createSquare(config: SquareConfig): Square {
   let newSquare = {color: 'white', area: 100}
   if (config.clor) {
     // Error: 屬性 'clor' 不存在于類型 'SquareConfig' 中
     newSquare.color = config.clor
   }
   if (config.width) {
     newSquare.area = config.width * config.width
   }
   return newSquare
 }
 
 let mySquare = createSquare({color: 'black'})

只讀屬性

一些對象屬性只能在對象剛剛創(chuàng)建的時候修改其值。 你可以在屬性名前用 readonly 來指定只讀屬性:

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

你可以通過賦值一個對象字面量來構(gòu)造一個 Point。 賦值后,xy 再也不能被改變了。

let p1: Point = { x: 10, y: 20 }
p1.x = 5 // error!

TypeScript 具有 ReadonlyArray<T> 類型,它與 Array<T> 相似,只是把所有可變方法去掉了,因此可以確保數(shù)組創(chuàng)建后再也不能被修改:

let a: number[] = [1, 2, 3, 4]
let ro: ReadonlyArray<number> = a
ro[0] = 12 // error!
ro.push(5) // error!
ro.length = 100 // error!
a = ro // error!

上面代碼的最后一行,可以看到就算把整個 ReadonlyArray 賦值到一個普通數(shù)組也是不可以的。 但是你可以用類型斷言重寫:

a = ro as number[]

readonly vs const

最簡單判斷該用 readonly 還是 const 的方法是看要把它做為變量使用還是做為一個屬性。 做為變量使用的話用 const,若做為屬性則使用 readonly。

額外的屬性檢查

我們在第一個例子里使用了接口,TypeScript 讓我們傳入 { size: number; label: string; } 到僅期望得到 { label: string; } 的函數(shù)里, 并且我們已經(jīng)學過了可選屬性。

然而,天真地將這兩者結(jié)合的話就會像在 JavaScript 里那樣搬起石頭砸自己的腳。 比如,拿 createSquare 例子來說:

interface SquareConfig {
    color?: string;
    width?: number;
}

function createSquare (config: SquareConfig): { color: string; area: number } {
  let newSquare = {color: 'white', area: 100}
  if (config.color) {
    newSquare.color = config.color
  }
  if (config.width) {
    newSquare.area = config.width * config.width
  }
  return newSquare
}


let mySquare = createSquare({ colour: 'red', width: 100 })

注意傳入 createSquare 的參數(shù)拼寫為 colour 而不是 color。 在 JavaScript 里,這會默默地失敗。

你可能會爭辯這個程序已經(jīng)正確地類型化了,因為 width 屬性是兼容的,不存在 color 屬性,而且額外的 colour 屬性是無意義的。

然而,TypeScript 會認為這段代碼可能存在 bug。 對象字面量會被特殊對待而且會經(jīng)過額外屬性檢查,當將它們賦值給變量或作為參數(shù)傳遞的時候。 如果一個對象字面量存在任何“目標類型”不包含的屬性時,你會得到一個錯誤。

// error: 'colour' 不存在于類型 'SquareConfig' 中
let mySquare = createSquare({ colour: 'red', width: 100 })

繞開這些檢查非常簡單。 最簡便的方法是使用類型斷言:

let mySquare = createSquare({ width: 100, opacity: 0.5 } as SquareConfig)

然而,最佳的方式是能夠添加一個字符串索引簽名,前提是你能夠確定這個對象可能具有某些做為特殊用途使用的額外屬性。 如果 SquareConfig 帶有上面定義的類型的 colorwidth 屬性,并且還會帶有任意數(shù)量的其它屬性,那么我們可以這樣定義它:

interface SquareConfig {
  color?: string
  width?: number
  [propName: string]: any
}

我們稍后會講到索引簽名,但在這我們要表示的是SquareConfig 可以有任意數(shù)量的屬性,并且只要它們不是 colorwidth,那么就無所謂它們的類型是什么。

還有最后一種跳過這些檢查的方式,這可能會讓你感到驚訝,它就是將這個對象賦值給一個另一個變量: 因為 squareOptions 不會經(jīng)過額外屬性檢查,所以編譯器不會報錯。

let squareOptions = { colour: 'red', width: 100 }
let mySquare = createSquare(squareOptions)

要留意,在像上面一樣的簡單代碼里,你可能不應該去繞開這些檢查。 對于包含方法和內(nèi)部狀態(tài)的復雜對象字面量來講,你可能需要使用這些技巧,但是大多數(shù)額外屬性檢查錯誤是真正的bug。也就是說你遇到了額外類型檢查出的錯誤,你應該去審查一下你的類型聲明。 在這里,如果支持傳入 colorcolour 屬性到 createSquare,你應該修改 SquareConfig 定義來體現(xiàn)出這一點。

函數(shù)類型

接口能夠描述 JavaScript 中對象擁有的各種各樣的外形。 除了描述帶有屬性的普通對象外,接口也可以描述函數(shù)類型。

為了使用接口表示函數(shù)類型,我們需要給接口定義一個調(diào)用簽名。它就像是一個只有參數(shù)列表和返回值類型的函數(shù)定義。參數(shù)列表里的每個參數(shù)都需要名字和類型。

interface SearchFunc {
  (source: string, subString: string): boolean
}

這樣定義后,我們可以像使用其它接口一樣使用這個函數(shù)類型的接口。 下例展示了如何創(chuàng)建一個函數(shù)類型的變量,并將一個同類型的函數(shù)賦值給這個變量。

let mySearch: SearchFunc
mySearch = function(source: string, subString: string): boolean {
  let result = source.search(subString);
  return result > -1
}

對于函數(shù)類型的類型檢查來說,函數(shù)的參數(shù)名不需要與接口里定義的名字相匹配。 比如,我們使用下面的代碼重寫上面的例子:

let mySearch: SearchFunc
mySearch = function(src: string, sub: string): boolean {
  let result = src.search(sub);
  return result > -1
}

函數(shù)的參數(shù)會逐個進行檢查,要求對應位置上的參數(shù)類型是兼容的。 如果你不想指定類型,TypeScript 的類型系統(tǒng)會推斷出參數(shù)類型,因為函數(shù)直接賦值給了 SearchFunc 類型變量。 函數(shù)的返回值類型是通過其返回值推斷出來的(此例是 falsetrue)。 如果讓這個函數(shù)返回數(shù)字或字符串,類型檢查器會警告我們函數(shù)的返回值類型與 SearchFunc 接口中的定義不匹配。

let mySearch: SearchFunc
mySearch = function(src, sub) {
  let result = src.search(sub)
  return result > -1
}

可索引的類型

與使用接口描述函數(shù)類型差不多,我們也可以描述那些能夠“通過索引得到”的類型,比如 a[10]ageMap['daniel']。 可索引類型具有一個 索引簽名,它描述了對象索引的類型,還有相應的索引返回值類型。 讓我們看一個例子:

interface StringArray {
  [index: number]: string
}

let myArray: StringArray
myArray = ['Bob', 'Fred']

let myStr: string = myArray[0]

上面例子里,我們定義了 StringArray 接口,它具有索引簽名。 這個索引簽名表示了當用 number 去索引 StringArray 時會得到 string 類型的返回值。

TypeScript 支持兩種索引簽名:字符串和數(shù)字。 可以同時使用兩種類型的索引,但是數(shù)字索引的返回值必須是字符串索引返回值類型的子類型。 這是因為當使用 number 來索引時,JavaScript 會將它轉(zhuǎn)換成string 然后再去索引對象。 也就是說用 100(一個 number)去索引等同于使用'100'(一個 string )去索引,因此兩者需要保持一致。

class Animal {
  name: string
}
class Dog extends Animal {
  breed: string
}

// 錯誤:使用數(shù)值型的字符串索引,有時會得到完全不同的Animal!
interface NotOkay {
  [x: number]: Animal
  [x: string]: Dog
}

字符串索引簽名能夠很好的描述 dictionary 模式,并且它們也會確保所有屬性與其返回值類型相匹配。 因為字符串索引聲明了 obj.propertyobj['property'] 兩種形式都可以。 下面的例子里, name 的類型與字符串索引類型不匹配,所以類型檢查器給出一個錯誤提示:

interface NumberDictionary {
  [index: string]: number;
  length: number;    // 可以,length是number類型
  name: string       // 錯誤,`name`的類型與索引類型返回值的類型不匹配
}

最后,你可以將索引簽名設置為只讀,這樣就防止了給索引賦值:

interface ReadonlyStringArray {
  readonly [index: number]: string;
}
let myArray: ReadonlyStringArray = ['Alice', 'Bob'];
myArray[2] = 'Mallory'; // error!

類類型

實現(xiàn)接口

與 C# 或 Java 里接口的基本作用一樣,TypeScript 也能夠用它來明確的強制一個類去符合某種契約。

interface ClockInterface {
  currentTime: Date
}

class Clock implements ClockInterface {
  currentTime: Date
  constructor(h: number, m: number) { }
}

你也可以在接口中描述一個方法,在類里實現(xiàn)它,如同下面的 setTime 方法一樣:

interface ClockInterface {
  currentTime: Date
  setTime(d: Date)
}

class Clock implements ClockInterface {
  currentTime: Date
  setTime(d: Date) {
    this.currentTime = d
  }
  constructor(h: number, m: number) { }
}

接口描述了類的公共部分,而不是公共和私有兩部分。 它不會幫你檢查類是否具有某些私有成員。

類靜態(tài)部分與實例部分的區(qū)別

當你操作類和接口的時候,你要知道類是具有兩個類型的:靜態(tài)部分的類型和實例的類型。 你會注意到,當你用構(gòu)造器簽名去定義一個接口并試圖定義一個類去實現(xiàn)這個接口時會得到一個錯誤:

interface ClockConstructor {
  new (hour: number, minute: number)
}

// error
class Clock implements ClockConstructor {
  currentTime: Date
  constructor(h: number, m: number) { }
}

這里因為當一個類實現(xiàn)了一個接口時,只對其實例部分進行類型檢查。constructor 存在于類的靜態(tài)部分,所以不在檢查的范圍內(nèi)。

看下面的例子,我們定義了兩個接口, ClockConstructor 為構(gòu)造函數(shù)所用和 ClockInterface 為實例方法所用。 為了方便我們定義一個構(gòu)造函數(shù) createClock,它用傳入的類型創(chuàng)建實例。

interface ClockConstructor {
  new (hour: number, minute: number): ClockInterface
}
interface ClockInterface {
  tick()
}

function createClock(ctor: ClockConstructor, hour: number, minute: number): ClockInterface {
  return new ctor(hour, minute)
}

class DigitalClock implements ClockInterface {
  constructor(h: number, m: number) { }
  tick() {
    console.log('beep beep')
  }
}
class AnalogClock implements ClockInterface {
  constructor(h: number, m: number) { }
  tick() {
    console.log('tick tock')
  }
}

let digital = createClock(DigitalClock, 12, 17)
let analog = createClock(AnalogClock, 7, 32)

因為 createClock 的第一個參數(shù)是 ClockConstructor 類型,在 createClock(AnalogClock, 7, 32) 里,會檢查 AnalogClock 是否符合構(gòu)造函數(shù)簽名。

繼承接口

和類一樣,接口也可以相互繼承。 這讓我們能夠從一個接口里復制成員到另一個接口里,可以更靈活地將接口分割到可重用的模塊里。

interface Shape {
  color: string
}

interface Square extends Shape {
  sideLength: number
}

let square = {} as Square
square.color = 'blue'
square.sideLength = 10

一個接口可以繼承多個接口,創(chuàng)建出多個接口的合成接口。

interface Shape {
  color: string
}

interface PenStroke {
  penWidth: number
}

interface Square extends Shape, PenStroke {
  sideLength: number
}

let square = {} as Square
square.color = 'blue'
square.sideLength = 10
square.penWidth = 5.0

混合類型

先前我們提過,接口能夠描述 JavaScript 里豐富的類型。 因為 JavaScript 其動態(tài)靈活的特點,有時你會希望一個對象可以同時具有上面提到的多種類型。

一個例子就是,一個對象可以同時做為函數(shù)和對象使用,并帶有額外的屬性。

interface Counter {
  (start: number): string
  interval: number
  reset(): void
}

function getCounter(): Counter {
  let counter = (function (start: number) { }) as Counter
  counter.interval = 123
  counter.reset = function () { }
  return counter
}

let c = getCounter()
c(10)
c.reset()
c.interval = 5.0

在使用 JavaScript 第三方庫的時候,你可能需要像上面那樣去完整地定義類型。這門課要重構(gòu)的 axios 庫就是一個很好的例子。

接口繼承類

當接口繼承了一個類類型時,它會繼承類的成員但不包括其實現(xiàn)。 就好像接口聲明了所有類中存在的成員,但并沒有提供具體實現(xiàn)一樣。 接口同樣會繼承到類的 privateprotected 成員。 這意味著當你創(chuàng)建了一個接口繼承了一個擁有私有或受保護的成員的類時,這個接口類型只能被這個類或其子類所實現(xiàn)(implement)。

當你有一個龐大的繼承結(jié)構(gòu)時這很有用,但要指出的是你的代碼只在子類擁有特定屬性時起作用。 這個子類除了繼承至基類外與基類沒有任何關系。例:

class Control {
  private state: any
}

interface SelectableControl extends Control {
  select(): void
}

class Button extends Control implements SelectableControl {
  select() { }
}

class TextBox extends Control {
  select() { }
}

// Error:“ImageC”類型缺少“state”屬性。
class ImageC implements SelectableControl {
  select() { }
}

在上面的例子里,SelectableControl 包含了 Control 的所有成員,包括私有成員 state。 因為 state 是私有成員,所以只能夠是 Control 的子類們才能實現(xiàn) SelectableControl 接口。 因為只有 Control 的子類才能夠擁有一個聲明于Control 的私有成員 state,這對私有成員的兼容性是必需的。

Control 類內(nèi)部,是允許通過 SelectableControl 的實例來訪問私有成員 state 的。 實際上,SelectableControl 接口和擁有 select 方法的 Control 類是一樣的。ButtonTextBox 類是 SelectableControl 的子類(因為它們都繼承自Control 并有 select 方法),但 ImageC 類并不是這樣的。

?著作權歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務。

相關閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容