作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
对于Scala中的隐式转换,我可以使用任何一个隐式转换函数
implicit def intToX(i:Int):X = new X(i)
1.myMethod // -1
implicit class X(i: Int) {
def myMethod = - i
}
1.myMethod // -1
最佳答案
隐式类是隐式方法和一个类的语法糖:
http://docs.scala-lang.org/sips/completed/implicit-classes.html:
For example, a definition of the form:
implicit class RichInt(n: Int) extends Ordered[Int] {
def min(m: Int): Int = if (n <= m) n else m
...
}will be transformed by the compiler as follows:
class RichInt(n: Int) extends Ordered[Int] {
def min(m: Int): Int = if (n <= m) n else m
...
}
implicit final def RichInt(n: Int): RichInt = new RichInt(n)
关于scala - Scala中具有隐式函数的转换与隐式类之间的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32286628/
我是一名优秀的程序员,十分优秀!