Nehmen wir an, ich habe
def A = "abc"
def X = "xyz"
Wie erstelle ich ein Map
Wo anstelle von
def map = [A:1, X:2]
Ich bekomme stattdessen das Äquivalent zum Schreiben
def map = [abc:1, xyz:2]
aber kann eine Variable A
und X
für den Schlüssel verwenden?
PS: Gleiche Frage für den Werteteil der Karte.
To use the value of a String as the key value of a map, simply surround the variable with parenthesis.