gpt4 book ai didi

scala - 在Scala中调用基于模板类型的方法

转载 作者:行者123 更新时间:2023-12-05 00:30:48 24 4
gpt4 key购买 nike

我试图找出一种从 Scala 调用 Java API 的方法。基本上,有一个 ContentValues具有几个方法的对象,如 getAsString , getAsLong ,每个都有自己不同的返回类型。

我可以包装ContentValues在另一个对象中,以便我可以添加 get[T]调用正确 getAsXXX 的方法方法取决于 T?

我试过的(没有用,提示含糊的隐式解决方案):

object SContentValuesConversions {

case class SContentGetter[ScalaType](val check: String => Boolean, val getter: String => ScalaType) {
def getTyped(key: String): Option[ScalaType] = {
if (!check(key)) None
else Some(getter(key))
}
}

implicit def SIntContentValues(cv: ContentValues) =
SContentGetter((cv containsKey _), (cv getAsInteger _))

implicit def SLongContentValues(cv: ContentValues) =
SContentGetter((cv containsKey _), (cv getAsLong _))

implicit def SStringContentValues(cv: ContentValues) =
SContentGetter((cv containsKey _), (cv getAsString _))
}

最佳答案

您可以使用与 CanBuildFrom 相同的技术。收藏品的特点。

我们首先创建一个 Getter案例类

case class Getter[T](getter: (ContentValues, String) => T) {

def getOpt(contentValues: ContentValues, key: String): Option[T] =
if (contentValues containsKey key) Some(getter(contentValues, key))
else None
}

这允许我们创建一个 ContentValues具有所需方法的包装器。
implicit class ContentValuesWrapper(val c: ContentValues) extends AnyVal {
def getAsOpt[T](key: String)(implicit getter: Getter[T]) =
getter.getOpt(c, key)
}

现在,为了调用 getAsOpt ContentValues上的方法我们需要提供 implicit Getter 的实例对于正确的类型。
object Getter {
implicit val intGetter = Getter(_ getAsInteger _)
implicit val longGetter = Getter(_ getAsLong _)
implicit val stringGetter = Getter(_ getAsString _)
}

现在您可以使用 getAsOpt ContentValues 上的方法实例。
// fake version of ContentValues
val c =
new ContentValues {
val m = Map("a" -> "1", "b" -> "2", "c" -> "3")

def getAsInteger(k: String): Int = getAsString(k).toInt
def getAsLong(k: String): Long = getAsString(k).toLong
def getAsString(k: String): String = m(k)

def containsKey(k: String): Boolean = m contains k
}

c.getAsOpt[Int]("a") //Option[Int] = Some(1)
c.getAsOpt[Long]("b") //Option[Long] = Some(2)
c.getAsOpt[String]("c") //Option[String] = Some(3)
c.getAsOpt[Int]("d") //Option[Int] = None
c.getAsOpt[Long]("e") //Option[Long] = None
c.getAsOpt[String]("f") //Option[String] = None

关于scala - 在Scala中调用基于模板类型的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15849559/

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