我正在拼凑这个问题的答案:Scala mixin to class instance,在那里我展示了一种将另一个特征或类实例“混合”到现有实例的方法:
case class Person(name: String)
val dave = Person("Dave")
val joe = Person("Joe")
trait Dog { val dogName: String }
val spot = new Dog { val dogName = "Spot" }
implicit def daveHasDog(p: dave.type) = spot
dave.dogName //"Spot"
joe.dogName //error: value dogName is not a member of Person
因此,在本地隐式def之后,dave
可以有效地用作Person with Dog
。我的问题是,如果我们想要定义一个只在Person
有Person
的情况下只占Dog
个实例的方法,我们该如何做?
我可以定义一个方法,例如
def showDog(pd: Person with Dog) = pd.name + " shows " + pd.dogName
但这对dave
没有好处,因为他仍然只是Person
,尽管他有隐含的转换能力。
我尝试过定义
trait Dog [T] { val dogName: String }
val spot = new Dog [dave.type] { val dogName = "Spot" }
def showDog(p: Person)(implicit dog: Dog[p.type]) = ...
但这不合法,给予error: illegal dependent method type
。有什么想法吗?
答案 0 :(得分:5)
如果使用-Ydependent-method-types
进行编译,原始代码将使用showDog
的定义:
scala> def showDog(p: Person)(implicit ev: p.type => Dog) = p.name + " shows " + p.dogName
showDog: (p: Person)(implicit ev: p.type => Dog)java.lang.String
scala> showDog(dave)
res1: java.lang.String = Dave shows Spot