gpt4 book ai didi

javascript - 在Typescript中将类方法作为参数传递

转载 作者:IT王子 更新时间:2023-10-29 03:23:11 25 4
gpt4 key购买 nike

我正在寻找将类方法传递给函数的可能性,该函数然后可以在该类的实例上执行该函数。类似于那个伪代码:(注意这是一个抽象的例子)

class Foo {
public somefunc() {
// do some
}
public anyfunc() {
// do any
}
}

function bar(obj: Foo ,func: "Foo.method") { // "that's what im looking for"
obj.func();
}

bar(new Foo(), Foo.somefunc); // do some
bar(new Foo(), Foo.anyfunc); // do any

有没有可能做到这一点?

我知道我可以做类似的事情:

class Foo {
static somefunc(fooObj: Foo) {
// do some
}
static anyfunc(fooObj: Foo) {
// do any
}
}

interface func {
(fooObj: Foo);
}

function bar(obj: Foo, fn: func) {
fn(obj);
}

bar(new Foo(), Foo.somefunc); // do some
bar(new Foo(), Foo.anyfunc); // do any

但这涉及我不想要的静态函数。

最佳答案

这不会在编译时检查函数是否来自 Foo,但会执行其余操作:

class Foo {
public somefunc() {
// do some
}
public anyfunc() {
// do any
}
}

function bar(obj: Foo ,func: () => void) {
func.call(obj);
}

bar(new Foo(), Foo.prototype.somefunc); // do some
bar(new Foo(), Foo.prototype.anyfunc); // do any

关于javascript - 在Typescript中将类方法作为参数传递,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29822773/

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