สมมติว่าฉันมี
def A = "abc"
def X = "xyz"
ฉันจะสร้างMap
ที่ไหนแทนที่จะเป็น
def map = [A:1, X:2]
ฉันได้รับแทนที่จะเทียบเท่ากับการเขียน
def map = [abc:1, xyz:2]
แต่สามารถใช้ตัวแปรA
และX
สำหรับคีย์?
PS: คำถามเดียวกันสำหรับส่วนมูลค่าของแผนที่
To use the value of a String as the key value of a map, simply surround the variable with parenthesis.