gpt4 book ai didi

scala - 隐式函数的 "type"是什么?

转载 作者:行者123 更新时间:2023-12-04 23:07:54 29 4
gpt4 key购买 nike

假设我有一个带有这样签名的函数:

 def tsadd(key: Any, time: Double, value: Any)(implicit format: Format): Option[Int]

我想创建一个包含一些这些函数的列表以供以后评估。我该怎么做。我尝试创建一个列表,如:
val pipelineCmds:List[(String,Double,Any)(Format) => Option[Int]] = Nil

并这样做:
pipelineCmds ++ r.tsadd(symbol, timestamp.getMillis.toDouble, value)

但是 val 没有很好地响应隐式参数格式。它希望在第一组括号之后看到一个 ]。

最终目标是做类似的事情
r.pipeline { p => 
pipelineCmds.foreach(c => p.c)
}

任何帮助是极大的赞赏!

最佳答案

据我所知,带有隐式参数的函数使用起来很烦人。适当的类型是(您的选择):

(String, Double, Any) => Format => Option[Int]    // As written
Format => (String, Double, Any) => Option[Int] // Conceptually works more like this
String => Double => Any => Format => Option[Int] // Completely curried
(String, Double, Any, Format) => Option[Int] // Closest to how the JVM sees the method

但该功能的部分应用效果不佳。您可以烦人地注释所有类型以获取最新版本:
class Format {}   // So the example works
def tsadd(s: String, d: Double, a: Any)(implicit f: Format): Option[Int] = None
scala> tsadd(_: String, _: Double, _: Any)(_: Format)
res2: (String, Double, Any, Format) => Option[Int] = <function4>

但是将自己的代码编写为您想要的任何形状并不难:
def example(f: Format => (String, Double, Any) => Option[Int]) = f
scala> example(f => { implicit val fm=f; tsadd _ })
res3: (Format) => (String, Double, Any) => Option[Int] = <function1>

当然,如果您在创建列表时已经知道隐式值,那么您只需要类型
(String, Double, Any) => Option[Int]

然后你分配这样的功能
tsadd _

关于scala - 隐式函数的 "type"是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6628484/

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