官方网站的元组示例不起作用

时间:2019-06-25 19:38:33

标签: typescript

// Declare a tuple type
let x: [string, number];
// Initialize it
x = ["hello", 10]; // OK


x[3] = "world"; // OK, 'string' can be assigned to 'string |number'

第x [3]行=“世界”;抛出错误: 不能将类型“ world”分配给类型undefined。 长度为“ 2”的元组类型“ [字符串,数字]”在索引“ 3”处没有元素。

https://www.typescriptlang.org/docs/handbook/basic-types.html

0 个答案:

没有答案