gpt4 book ai didi

斯卡拉: "class needs to be abstract, since method is not defined"错误

转载 作者:行者123 更新时间:2023-12-04 19:51:32 24 4
gpt4 key购买 nike

我很熟悉这个错误消息,但我不太确定在这种情况下:

class Foo extends A {
// getting error here
}

trait A extends B {
def something(num:Int):Boolean = {
num == 1
}
}

trait B {
def something[S](num:S):Boolean
}

但这编译得很好:

    class Foo extends A ...

trait A extends B[Int] {
def something(num:Int):Boolean = {
num == 1
}
}

trait B[S] {
def something(num:S):Boolean
}

完整错误:类 Foo 需要是抽象的,因为未定义 [S](num: S)Boolean 类型的特征 A 中的方法 something

不应该第一次编译吗?我在这里做错了什么,我该如何解决?

最佳答案

def something(num:Int):Booleandef something[S](num:S):Boolean 具有不同的方法签名。第一个参数类型是 Int。第二个参数类型是通用的 S

class Foo extends A {
// You have to implement this abstract method
// that is inherited from B via A.
def something[S](num:S):Boolean = ???
}

trait A extends B {
def something(num:Int):Boolean = {
num == 1
}
}

trait B {
def something[S](num:S):Boolean
}

想象一下,尝试调用继承自 Bsomething[S](num:S) 方法:

new Foo().something[String]("x")

如果您可以不实现它而逍遥法外,您希望发生什么?

在第二个例子中,由于 A 继承了 B[Int],类泛型 S 被绑定(bind)到 Int,所以 A 继承的方法是 something(num:Int),它与实现的方法具有相同的签名。

关于斯卡拉: "class needs to be abstract, since method is not defined"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23861776/

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