HarmonyOS ArkTS 中元组类型
元组类型允许表示一个已知元素数量和类型的数组,各元素的类型不必相同。 比如,你可以定义一对值分别为 string
和number
类型的元组。
let x: [string, number];
x = ['hello', 10]; // 正确的写法
x = [10, 'hello']; // 错误的写法
更多关于HarmonyOS ArkTS 中元组类型的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html