Scala 允许对 varargs 进行模式匹配unapplySeq
:
case class A(args: String*)
A("a", "b", "c") match {
case A(args @ _*) => args // Seq("a", "b", "c")
}
我想用宏生成这样的模式。我该怎么做?一个自然的尝试是行不通的:
scala> pq"x @ _*"
<console>:11: error: illegal start of simple pattern
pq"x @ _*"
^
但是,可以从q
模式中提取实际类型,然后用它重新创建模式:
scala> val q"??? match { case Hello($ident @ $thingy) => }" = q"??? match { case Hello(any @ _*) => }"
ident: reflect.runtime.universe.Name = any
thingy: reflect.runtime.universe.Tree = (_)*
scala> pq"$ident @ $thingy"
res1: reflect.runtime.universe.Bind = (any @ (_)*)
但这太hacky了,我不想这样做。