以下のオブジェクトL1
が動作します。varargs を渡すことでan を「作成」できますが、これは良いことですが、同じ構文を使用しL1
て an に代入できるようにしたいと考えています。L1
残念ながら、ここで行った方法ではArray
、L1
.
object L1 {
def apply(stuff: String*) = stuff.mkString(",")
def unapply(s: String) = Some(s.split(","))
}
val x1 = L1("1", "2", "3")
val L1(Array(a, b, c)) = x1
println("a=%s, b=%s, c=%s".format(a,b,c))
L2
以下のように、明白な方法のように思われる方法でこれを達成しようとしました。
object L2 {
def apply(stuff: String*) = stuff.mkString(",")
def unapply(s: String) = Some(s.split(","):_*)
}
val x2 = L2("4", "5", "6")
val L2(d,e,f) = x2
println("d=%s, e=%s, f=%s".format(d,e,f))
しかし、これはエラーを与えます:
error: no `: _*' annotation allowed here
(such annotations are only allowed in arguments to *-parameters)`.
このように可変引数を使用することは可能unapply
ですか?