gpt4 book ai didi

javascript - 实现函数重载

转载 作者:行者123 更新时间:2023-11-30 08:53:57 25 4
gpt4 key购买 nike

由于 javascript 不支持函数重载,typescript 也不支持。然而,这是一个有效的接口(interface)声明:

// function overloading only in the interface 
interface IFoo{
test(x:string);
test(x:number);
}

var x:IFoo;
x.test(1);
x.test("asdf");

但是我该如何实现这个接口(interface)。 typescript 不允许此代码:

// function overloading only in the interface 
interface IFoo{
test(x:string);
test(x:number);
}

class foo implements IFoo{
test(x:string){

}
test(x:number){

}
}

Try it

最佳答案

Typescript 中的函数重载是这样完成的:

class foo implements IFoo {
test(x: string);
test(x: number);
test(x: any) {
if (typeof x === "string") {
//string code
} else {
//number code
}
}
}

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

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