Ricerca…


Sintassi

  • $
  • $ {}
  • $ {->}

Di base

def str = 'nice'
assert "Groovy is $str" == 'Groovy is nice'

Espressione punteggiata

def arg = [phrase: 'interpolated']
assert "This is $arg.phrase" == 'This is interpolated'

Espressione desiderosa

def str = 'old'
def interpolated = "I am the ${str} value"
assert interpolated == 'I am the old value'
str = 'new'
assert interpolated == 'I am the old value'

Espressione pigra

Possiamo avere un'interpolazione pigra in Stringhe. Questo è diverso dall'interpolazione normale poiché GString può potenzialmente avere valori diversi, a seconda della chiusura, ogni volta che viene convertito in una stringa.

def str = 'old'
def interpolated = "I am the ${ -> str} value"
assert interpolated == 'I am the old value'
str = 'new'
assert interpolated == 'I am the new value'

Espressione

def str = 'dsl'
def interpolated = "Groovy ${str.length() + 1} easy ${str.toUpperCase()}"
assert interpolated == 'Groovy 4 easy DSL'
str = 'Domain specific language'
assert interpolated == 'Groovy 4 easy DSL'


Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow