Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

TypeScript 元组


类型化数组

一个元组是一个类型化的,具有预定义长度和每个索引类型的数组

元组很棒,因为它们允许数组中的每个元素都是已知类型的值。

要定义一个元组,请指定数组中每个元素的类型

示例

// 定义我们的元组
let ourTuple: [number, boolean, string];

// 正确初始化
ourTuple = [5, false, 'Coding God was here'];
自己试试 »

如您所见,我们有一个数字、布尔值和一个字符串。但是,如果我们尝试以错误的顺序设置它们会发生什么情况呢?

示例

// 定义我们的元组
let ourTuple: [number, boolean, string];

// 初始化错误,导致错误
ourTuple = [false, 'Coding God was mistaken', 5];
自己试试 »

即使我们有booleanstringnumber,顺序在我们的元组中也很重要,并且会引发错误。


只读元组

一个好的做法是将您的元组设为readonly

元组仅对初始值具有强类型定义

示例

// 定义我们的元组
let ourTuple: [number, boolean, string];
// 正确初始化
ourTuple = [5, false, 'Coding God was here'];
// 对于索引 3+,我们的元组没有类型安全
ourTuple.push('Something new and wrong');
console.log(ourTuple);
自己试试 »

您会看到新的值元组仅对初始值具有强类型定义

示例

// 定义我们的只读元组
const ourReadonlyTuple: readonly [number, boolean, string] = [5, true, 'The Real Coding God'];
// 由于它是只读的,因此会引发错误。
ourReadonlyTuple.push('Coding God took a day off');
自己试试 »

要了解有关readonly等访问修饰符的更多信息,请访问我们此处关于它们的章节:TypeScript 类

如果您以前使用过 React,那么您很可能已经使用过元组了。

useState返回一个包含值和设置函数的元组。

const [firstName, setFirstName] = useState('Dylan')是一个常见的例子。

由于结构,我们知道列表中的第一个值将是特定值类型,在本例中为string,第二个值为function


w3schools CERTIFIED . 2022

获取认证!

完成 TypeScript 模块,完成练习,参加考试并获得 w3schools 认证!!

$45 报名

命名元组

命名元组允许我们为每个索引处的值提供上下文。

示例

const graph: [x: number, y: number] = [55.2, 41.3];

命名元组为我们的索引值代表什么提供了更多上下文。


解构元组

由于元组是数组,因此我们也可以解构它们。

示例

const graph: [number, number] = [55.2, 41.3];
const [x, y] = graph;

要复习解构,请查看此处


TypeScript 练习

用练习测试自己

练习

值类型的顺序对元组并不重要


        

开始练习


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.