作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 metrics-scala 库中,我们有以下方法:
def timer(name: String, scope: String = null): Timer
scope
参数并将其从下一个主要版本中删除。
def timer(name: String): Timer
@deprecated(...)
def timer(name: String, scope: String): Timer
def timer(name: String, @deprecated(...) scope: String = null): Timer
timer
内部发出警告, 而不是给
timer
的来电者.
sbt:metrics4-scala-root> mimaReportBinaryIssues
[error] * synthetic method timer$default$2()java.lang.String in class nl.grons.metrics4.scala.MetricBuilder does not have a correspondent in current version
[error] filter with: ProblemFilters.exclude[DirectMissingMethodProblem]("nl.grons.metrics4.scala.MetricBuilder.timer$default$2")
最佳答案
我相信(但我现在没有 MiMa 设置来检查)您可以使用特征:
object Foo extends DeprecatedFoo {
def timer(name: String): Unit = { println("called new shiny version") }
}
trait DeprecatedFoo {
@deprecated("", "")
def timer(name: String, scope: String = null) = { println("called bad old version")}
}
Foo.timer("xx") // calls new version
Foo.timer("xx", null) // calls old version and issues a warning:
invokevirtual Foo/timer(Ljava/lang/String;Ljava/lang/String;)Z
,这也将解析为旧版本。
关于scala - 如何在 Scala 中弃用具有默认值的参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53466334/
我是一名优秀的程序员,十分优秀!