未找到隐式值

发布于 2024-09-19 13:17:47 字数 589 浏览 7 评论 0原文

class Test {
    import scala.collection._

    class Parent
    class Child extends Parent

    implicit val children = mutable.Map[String, Child]()

    def createEntities[T <: Parent](names: String*) = names.foreach(createEntity[T])


    def createEntity[T <: Parent](name: String)(implicit map: mutable.Map[String, T]): Unit = map.get(name) match {
        case None => println( name + " not defined.")
        case _ =>
    }
}

为什么编译器抱怨:

错误:找不到参数映射的隐式值:scala.collection.mutable.Map[String,T] 名称.foreach(createEntity[T])

class Test {
    import scala.collection._

    class Parent
    class Child extends Parent

    implicit val children = mutable.Map[String, Child]()

    def createEntities[T <: Parent](names: String*) = names.foreach(createEntity[T])


    def createEntity[T <: Parent](name: String)(implicit map: mutable.Map[String, T]): Unit = map.get(name) match {
        case None => println( name + " not defined.")
        case _ =>
    }
}

Why the compiler complains:

error: could not find implicit value for parameter map: scala.collection.mutable.Map[String,T]
names.foreach(createEntity[T])

?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

标点 2024-09-26 13:17:48

如果您调用,例如 createEntities[Parent]("A", "B") (您可以这样做,因为 ParentParent 的子类型code>),它需要一个隐式的 mutable.Map[String, Parent],但目前还没有。更准确地说,您的定义要求您为 Parent每个子类型提供 mutable.Map[String, T],而不仅仅是那些已经定义:

implicit def aMap[T <: Parent]: mutable.Map[String, T] = ...

If you call, e.g., createEntities[Parent]("A", "B") (which you can, because Parent is a subtype of Parent), it needs an implicit mutable.Map[String, Parent], and there isn't one. To be more precise, your definitions require you to supply a mutable.Map[String, T] for every subtype of Parent, not just those already defined:

implicit def aMap[T <: Parent]: mutable.Map[String, T] = ...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文