作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否有一些 Groovy 替代方案来表达如下内容:
def doSomethingWith(implicit i:Int) = println ("Got "+i)
implicit var x = 5
doSomethingWith(6) // Got 6
doSomethingWith // Got 5
x = 0
doSomethingWith // Got 0
更新:在此处查看后续问题:Groovy equivalent for Scala implicit parameters - extended
最佳答案
您可以使用带有默认参数的闭包:
doSomethingWith = { i = value -> println "Got $i" }
value = 5
doSomethingWith(6) // Got 6
doSomethingWith() // Got 5
value = 0
doSomethingWith() // Got 0
关于scala - Scala 隐式参数的 Groovy 等价物,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13378337/
我是一名优秀的程序员,十分优秀!