gpt4 book ai didi

typescript - 在 TypeScript 中,可以在没有 "new"关键字的情况下使用类吗?

转载 作者:搜寻专家 更新时间:2023-10-30 20:42:08 29 4
gpt4 key购买 nike

TypeScript 是包含类型的 ES6 Javascript 的超集。类可以使用 class 关键字声明,并使用 new 关键字实例化,类似于它们在 Java 中的方式。

我想知道在 TypeScript 中是否有任何用例可以在不使用 new 关键字的情况下实例化一个类。

我问的原因是因为我想知道,假设我有一个名为 Bob 的类,我是否可以假设 Bob 的任何实例都是用 实例化的新的 Bob()

最佳答案

默认情况下,Typescript 会对此进行保护,因此如果您这样做:

class A {}
let a = A();

你会得到一个错误:

Value of type typeof A is not callable. Did you mean to include 'new'?

但是有些对象可以不使用new关键字创建,基本上都是原生类型。
如果您查看 lib.d.ts,您可以看到不同构造函数的签名,例如:

StringConstructor :

interface StringConstructor {
new (value?: any): String;
(value?: any): string;
...
}

ArrayConstructor :

interface ArrayConstructor {
new (arrayLength?: number): any[];
new <T>(arrayLength: number): T[];
new <T>(...items: T[]): T[];
(arrayLength?: number): any[];
<T>(arrayLength: number): T[];
<T>(...items: T[]): T[];
...
}

如您所见,带有和不带有 new 关键字的 ctors 总是相同的。
如果愿意,您当然可以模仿这种行为。

重要的是要理解,虽然 typescript 会检查以确保不会发生这种情况,但 javascript 不会检查,因此如果有人编写将使用您的代码的 js 代码,他可能会忘记使用 new,所以这种情况还是有可能的。

很容易检测到这种情况是否在运行时发生,然后按照您认为合适的方式处理它(抛出错误,通过使用 new 返回一个实例并记录它来修复它)。
这是一篇讨论它的帖子:Creating instances without new (普通 js),但 tl;dr 是:

class A {
constructor() {
if (!(this instanceof A)) {
// throw new Error("A was instantiated without using the 'new' keyword");
// console.log("A was instantiated without using the 'new' keyword");

return new A();
}
}
}

let a1 = new A(); // A {}
let a2 = (A as any)(); // A {}

( code in playground )


编辑

据我所知,不可能让编译器理解 A 可以在没有 new 关键字的情况下调用而不强制转换。
我们可以做得更好,而不是将其转换为 any:

interface AConstructor {
new(): A;
(): A;
}

let a2 = (A as AConstructor)(); // A {}

我们无法完成(即)lib.d.ts 中的Array 的技巧的原因:

interface Array<T> {
...
}

interface ArrayConstructor {
...
}

declare const Array: ArrayConstructor;

他们在这里使用Array 一次作为类型,一次作为值,但是类既是类型又是值,所以尝试使用此技巧将以:

Duplicate identifier 'A'

关于typescript - 在 TypeScript 中,可以在没有 "new"关键字的情况下使用类吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38754854/

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