73

sealed abstractabstractScala 类有什么区别?

4

2 回答 2

92

不同之处在于密封类的所有子类(无论是否抽象)都必须与密封类在同一个文件中。

于 2010-06-13T15:34:16.170 回答
78

正如回答的那样,密封类(抽象或非抽象)的所有直接继承子类必须在同一个文件中。这样做的一个实际结果是,如果模式匹配不完整,编译器会发出警告。例如:

sealed abstract class Tree
case class Node(left: Tree, right: Tree) extends Tree
case class Leaf[T](value: T) extends Tree
case object Empty extends Tree

def dps(t: Tree): Unit = t match {
  case Node(left, right) => dps(left); dps(right)
  case Leaf(x) => println("Leaf "+x)
  // case Empty => println("Empty") // Compiler warns here
}

如果Treesealed,则编译器会发出警告,除非最后一行未注释。

于 2010-06-13T19:33:14.587 回答