gpt4 book ai didi

scala 宏生成隐式

转载 作者:行者123 更新时间:2023-12-05 01:00:51 25 4
gpt4 key购买 nike

我正在尝试通过宏生成一些隐式 - 宏的精简版本如下所示:

object Implicits {
def generate(c:Context):c.Expr[Unit]={
import c.universe._
c.Expr[Unit] {
q"""
object Dud{
implicit val p:java.io.File = new java.io.File("/tmp")
def toString():String ={ "Dud here" }
}
import Dud._
"""
}
}
}

我正在使用宏:
object ImplicitTest extends App {
def genImplicits = macro Implicits.generate
genImplicits
val f: File = implicitly[File]
println(f)
}

测试保释了提示
ImplicitTest.scala could not find implicit value for parameter e: java.io.File
[error] val f: File = implicitly[File]
[error] ^

这个宏我做错了什么?

最佳答案

基于 Travis 的回答(谢谢),我使用宏注释编写了宏:如果对其他人有帮助,这是代码 - 这是概念证明

@compileTimeOnly("enable macro paradise to expand macro annotations")
class defaultFileMacro extends StaticAnnotation {
def macroTransform(annottees: Any*) = macro DefaultMacro.impl
}

object DefaultMacro {
def impl(c: Context)(annottees: c.Expr[Any]*): c.Expr[Any] = {
import c.universe._
val inputs:List[Tree] = annottees.map(_.tree).toList
val tree= inputs(0)
val q"val $list:List[$t]= $files" = tree
print(show(q"""implicit val fl1:$t = $files(0)"""))
c.Expr[Any] {
q"""
implicit val fl1:$t = $files(0)
"""
}
}
}

用法:
object ImplicitTest extends App {
def findDefaultFile() = {
@defaultFileMacro val list: List[File] = List(new File("/tmp"))
val f: File = implicitly[File]
println(f)
}
findDefaultFile()
}


> run-main ImplicitTest
[info] Running ImplicitTest
/tmp

关于scala 宏生成隐式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28890058/

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