gpt4 book ai didi

Scala 3 TypeRepr 匹配更高级的类型

转载 作者:行者123 更新时间:2023-12-04 12:55:42 26 4
gpt4 key购买 nike

如何正确模式匹配 TypeRepr在更高级的类型上? Existentials 成功匹配类,但是当我尝试使用类型时,我收到编译器错误 unreducible application of higher-kinded type writetype.Foo to wildcard arguments

import scala.quoted.*

type Foo[X]
class Bar[X]

inline def writeType[T]: String = ${writeTypeImpl[T]}

def writeTypeImpl[T](using Type[T], Quotes): Expr[String] =
import quotes.reflect.*
val tpe = TypeRepr.of[T]
val s = tpe.asType match
//case '[Foo[?]] => "FooSuccess"
case '[Bar[?]] => "BarSuccess"
case _ => "Fail"

Expr(s)

最佳答案

这是您需要的答案:
https://docs.scala-lang.org/scala3/guides/migration/incompat-other-changes.html#wildcard-type-argument
您必须使用 traitabstract classFoo[A]其中是具体类型(或类型参数)

关于Scala 3 TypeRepr 匹配更高级的类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67961353/

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