2

次のようなものを表現するための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

更新:ここでフォローアップの質問を参照してください:Scalaの暗黙的なパラメーターに相当するGroovy-拡張

4

2 に答える 2

5

デフォルトのパラメータでクロージャを使用できます。

doSomethingWith = { i = value -> println "Got $i" }
value = 5

doSomethingWith(6)  // Got 6
doSomethingWith()   // Got 5

value = 0
doSomethingWith()   // Got 0
于 2012-11-14T12:09:00.217 に答える
0

これは私がGroovyで暗黙的に行う方法です

@Test
def void customString() {
    println "Welcome implicits world in groovy".upperCaseNoSpace
    println "Welcome implicits world in groovy".removeSpaces

}

static {
    String.metaClass.getUpperCaseNoSpace = {
        delegate.toUpperCase().replace(" ", "_")
    }

    String.metaClass.getRemoveSpaces = {
        delegate.replace(" ", "")
    }
}
于 2016-10-16T10:06:23.860 に答える