作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
编写了一些 Scala 工具后,我正在尝试掌握安排我的代码的最佳方式 - 特别是隐式。我有两个目标:
case class StringW(s : String) {
def contrived = s + "?"
}
trait StringWImplicits {
implicit def To(s : String) = StringW(s)
implicit def From(sw : StringW) = sw.s
}
object StringW extends StringWImplicits
// Elsewhere on Monkey Island
object World extends StringWImplicits with ListWImplicits with MoreImplicits
import StringW._ // Selective import
import World._. // Import everything
最佳答案
我认为implicit
如果您不知道它们来自哪里,则转换是危险的。就我而言,我把我的 implicit
s 在 Conversions
类(class)和 import
它尽可能接近使用
def someMethod(d: Date) ; Unit {
import mydate.Conversions._
val tz = TimeZone.getDefault
val timeOfDay = d.getTimeOfDay(tz) //implicit used here
...
}
trait
中“继承”隐含信息出于同样的原因,它被认为是
糟糕的 Java 实践 实现
interface
所以你可以直接使用它的常量(静态导入是首选)。
关于scala - 我应该如何在我的 Scala 应用程序中组织隐式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1269791/
我是一名优秀的程序员,十分优秀!