作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想要一个提取器来隐式转换它的参数,但它似乎不起作用。考虑这个非常简单的案例:
case class MyString(s: String) {}
implicit def string2mystring(x: String): MyString = new MyString(x)
implicit def mystring2string(x: MyString) = x.s
object Apply {
def unapply(s: MyString): Option[String] = Some(s)
}
val Apply(z) = "a" // error: scrutinee is incompatible with pattern type
String
转换参数至
MyString
?我希望它会调用
string2mystring("a")
在飞行中。显然我可以通过说
val Apply(y) = MyString("a")
来解决这个问题。 ,但似乎我不应该这样做。
最佳答案
模式匹配时不应用隐式转换。这不是您的代码的错误或问题,它只是 Scala 的创建者的设计决定。
要修复它,您应该编写另一个接受 String
的提取器。 — 这反过来又可以调用您的隐式转换。
或者,您可以尝试使用 View 绑定(bind),这似乎也可以,并且如果您稍后将其他隐式转换定义为 MyString
也可以使用。 :
object Apply {
def unapply[S <% MyString](s: S): Option[String] = Some(s.s)
}
关于Scala - unapply 的隐式转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6736569/
我是一名优秀的程序员,十分优秀!