0

这应该工作吗?

interface MyInterface{
}

class MyClass {
    DoSomething(callback: (MyInterface[]) => void) {
        ...
    }
}

编译器不喜欢参数是 MyInterface 的数组。

4

1 回答 1

5

您缺少参数名称:

interface MyInterface{
}

class MyClass {
    DoSomething(callback: (arg:MyInterface[]) => void) {
    }
}
于 2013-01-14T06:21:35.953 回答