4

デフォルトのパラメーターを持つ次のcaseクラスがあり、最初の2つのパラメーターを抽出できるようにunapplyメソッドを作成する方法を考えています。

以下のコードが明確であることを願っています。

case class Point(x: Double, y: Double, _key: Option[String] = None) {
  def key: String = _key.getOrElse("")
}

object Point {
  def unapply(p: Point) = (p.x, p.y)
}

// pSeq is Seq[Point]
pSeq.map { case Point(x,y) => x + y } // This causes a compiler error:
                                      // wrong number of arguments for <none>: 
                                      // (x: Double, y: Double, _key: Option[String])
4

1 に答える 1

6

これがあなたが探しているものであるかどうかはわかりませんが、それはあなたが説明するAPIを提供します。

sealed abstract class Point(x: Double, y: Double)
case class PointKey(x: Double, y: Double, _key: String) extends Point(x,y)
case class PointNoKey(x: Double, y: Double) extends Point(x,y)
object Point {
  def apply(x: Double, y: Double) = PointNoKey(x,y)
  def apply(x: Double, y: Double, _key: String) = PointKey(x,y,_key)
  def unapply(p: Point): Option[(Double,Double)] = p  match {
    case PointNoKey(x,y) => Some(x,y)
    case PointKey(x,y,_) => Some(x,y)
  }
}

うまくいくのであれば、caseクラスでワイルドカードを使用することをお勧めします。

pSeq.map { case Point(x,y,_) => x + y }
于 2012-11-24T02:38:14.597 に答える