在 typescript 中,陣列型別有多種定義方式,比較靈活。
最簡單的方法是使用「型別 + 方括號」來表示陣列:
let fibonacci:
number
=[1,
1,2,
3,5]
;
陣列的項中不允許出現其他的型別:
let fibonacci:
number
=[1,
'1',2,
3,5]
;// type 'string' is not assignable to type 'number'.
陣列的一些方法的引數也會根據陣列在定義時約定的型別進行限制:
let fibonacci:
number
=[1,
1,2,
3,5]
;fibonacci.
push
('8');
// argument of type '"8"' is not assignable to parameter of type 'number'.
上例中,push
方法只允許傳入number
型別的引數,但是卻傳了乙個"8"
型別的引數,所以報錯了。這裡"8"
是乙個字串字面量型別,會在後續章節中詳細介紹。
我們也可以使用陣列泛型(array generic)array
來表示陣列:
let fibonacci:
array
<
number
>=[
1,1,
2,3,
5];
關於泛型,可以參考泛型一章。
介面也可以用來描述陣列:
inte***ce
numberarray
let fibonacci: numberarray =[1
,1,2
,3,5
];
numberarray
表示:只要索引的型別是數字時,那麼值的型別必須是數字。
雖然介面也可以用來描述陣列,但是我們一般不會這麼做,因為這種方式比前兩種方式複雜多了。
不過有一種情況例外,那就是它常用來表示類陣列。
類陣列(array-like object)不是陣列型別,比如arguments
:
function
sum(
)// type 'iarguments' is missing the following properties from type 'number': pop, push, concat, join, and 24 more.
上例中,arguments
實際上是乙個類陣列,不能用普通的陣列的方式來描述,而應該用介面:
function
sum(
)= arguments;
}
在這個例子中,我們除了約束當索引的型別是數字時,值的型別必須是數字之外,也約束了它還有length
和callee
兩個屬性。
事實上常用的類陣列都有自己的介面定義,如iarguments
,nodelist
,htmlcollection
等:
function
sum(
)
其中iarguments
是 typescript 中定義好了的型別,它實際上就是:
inte***ce
iarguments
關於內建物件,可以參考內建物件一章。
乙個比較常見的做法是,用any
表示陣列中允許出現任意型別:
let list:
any=
['xcatliu',25
,];
陣列型別 typedef定義的陣列型別的函式呼叫
typedef 定義陣列型別 如下 vs2013 不能實現陣列傳遞 v1.0 typedef unsigned char elemtype 6 int return elemtype p p a return 1 main 用typedef 定義的陣列型別來定義指標 elemtype p 等價於ty...
多維陣列(陣列型別,陣列指標,陣列指標型別)
陣列 int myarray100 myarray是陣列首元素位址,myarray 1 步長是四個位元組 sizeof int myarray是整個陣列的位址,myarray 1 步長是100 sizeof int 400個位元組 typedef int myarraytype 100 myarra...
判斷陣列的型別
資料型別判斷之typeof typeof可以解決大部分的資料型別判斷,是乙個一元運算,放在乙個運算值之前,其返回值為乙個字串,該字串說明運算數的型別,所以判斷某個是否為string型別,可以直接 if typeof 你的值 string 以下是各種資料型別返回結果 12 3456 78910 var...