關(guān)于javascript:如何開(kāi)始理解類(lèi)型…args:any [])=> any 如何理解下面這段代碼里的 new 操作? /** * Checks if the value is an instance of the specified object. */ isInstance(object: any, targetTypeConstructor: new (...args: any[]) => any) { return targetTypeConstructor && typeof targetTypeConstructor ==="function" && object instanceof targetTypeConstructor; } 我們逐步分解,。 () => any 該函數(shù)沒(méi)有輸入?yún)?shù),,返回任意類(lèi)型,。 (...args: any[]) => any ...args: any[]使用的是Rest Parameters構(gòu)造,該構(gòu)造本質(zhì)上表示可以提供any類(lèi)型的任何數(shù)量的參數(shù),。因?yàn)榇嬖跀?shù)量未知的any參數(shù),,所以參數(shù)的類(lèi)型是any的數(shù)組。 最后,,把 new 關(guān)鍵字補(bǔ)上,。 new (...args: any[]) => any 此處的new關(guān)鍵字指定可以將此函數(shù)視為類(lèi)構(gòu)造函數(shù),并使用new關(guān)鍵字進(jìn)行調(diào)用,。 回到文章開(kāi)頭的函數(shù): 該函數(shù)是一個(gè)可以接受返回類(lèi)型any的任意數(shù)量的參數(shù)(類(lèi)型為any的函數(shù)),,并且可以用作帶有new關(guān)鍵字的構(gòu)造函數(shù)。 看一個(gè)該函數(shù)具體消費(fèi)的例子: function isInstance(object: any, targetTypeConstructor: new (...args: any[]) => any) { return targetTypeConstructor && typeof targetTypeConstructor ==="function" && object instanceof targetTypeConstructor; } class Jerry{ constructor(private name:string){ this.name = name; } } const jerry: Jerry = new Jerry('Jerry'); console.log(isInstance(jerry, Jerry)); 輸出:true 如果把 new 關(guān)鍵字去掉,,反而會(huì)報(bào)錯(cuò): Argument of type 'typeof Jerry' is not assignable to parameter of type '(...args: any[]) => any'. Type 'typeof Jerry' provides no match for the signature '(...args: any[]): any'. |
|