gpt4 book ai didi

scala - 使用这个关键字来继承?

转载 作者:行者123 更新时间:2023-12-04 21:49:10 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:




9年前关闭。




Possible Duplicate:
What is the difference between scala self-types and trait subclasses?



来自 example in scalatest site .有一件事我不太明白
trait FunSuiteStackBehaviors { 
this: FunSuite => //This line
def a() {}
def b() {}
}

class StackFunSuite extends FunSuite with FunSuiteStackBehaviors {}

据我了解,似乎他们试图将一些定义分配到一个特征中。但是 this: FunSuite =>是什么意思?部分做什么?我尝试使用 extends FunSuite 而不是
trait FunSuiteStackBehaviors extends FunSuite { 
def a() {}
def b() {}
}

class StackFunSuite extends FunSuite with FunSuiteStackBehaviors {}

我仍然得到相同的结果。它们是一样的吗 ?

最佳答案

this: => XXXX 被称为 self 类型注解 http://www.scala-lang.org/node/124
基本上,您将“this”(当前对象)的类型指定为指定的类型。一种“从内部类型转换”

关于scala - 使用这个关键字来继承?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8371448/

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