gpt4 book ai didi

javascript - Typescript 重复函数实现

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

我在同一个 Typescript 类中定义了以下两个函数签名,即

public emit<T1>(event: string, arg1: T1): void {}

public emit<T1,T2>(event: string, arg1: T1, arg2: T2): void {}

但是在转译 typescript 时出现以下错误

error TS2393: Duplicate function implementation.

我认为您可以在 typescript 中重载函数,前提是函数签名中的参数数量不同。鉴于上述签名分别有 2 个和 3 个参数,为什么我会收到此转译错误?

最佳答案

我假设您的代码如下所示:

public emit<T1>(event: string, arg1: T1): void {}
public emit<T1,T2>(event: string, arg1: T1, arg2: T2): void {}
public emit(event: string, ...args: any[]): void {
// actual implementation here
}

问题是您在前两行之后有 {}。这实际上定义了一个函数的空实现,例如:

function empty() {}

您只想为函数定义类型,而不是实现。所以只用分号替换空 block :

public emit<T1>(event: string, arg1: T1): void;
public emit<T1,T2>(event: string, arg1: T1, arg2: T2): void;
public emit(event: string, ...args: any[]): void {
// actual implementation here
}

关于javascript - Typescript 重复函数实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39689763/

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