gpt4 book ai didi

typescript - 为什么我不能在 TypeScript 中以这种方式创建只读数组?

转载 作者:搜寻专家 更新时间:2023-10-30 21:09:54 25 4
gpt4 key购买 nike

文档显示了 (#ReadOnlyArray) 如何使用接口(interface)来完成它,但是当我探索这种语言时,我想知道为什么它不能正常工作?

type TraverseTuple<T extends Array<unknown>> = {
readonly [P in keyof T]: T[P];
}

const test: TraverseTuple<[string, number, string, number]> = ['s', 1, 'o', 2];

test[1] = 0; // not readonly !

最佳答案

有一个内置的只读数组类型,它使数组成为只读的(除非断言回一个普通数组)。

const test: ReadonlyArray<string|number> = ['s', 1, 'o', 2];

test[1] = 0;

但是,对于元组,您需要创建一个显式类型,如下所示:

const test: Readonly<{ 0: string, 1: number, 2: string, 3: number }> = ['s', 1, 'o', 2];

test[1] = 1;

关于typescript - 为什么我不能在 TypeScript 中以这种方式创建只读数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53960425/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com