訪問地圖中的地圖與閉合, 我有一個Map對象的值是另一個地圖對象 如: - `寫DSL地圖裏面的地圖與封閉常規,
to access the data like this I can issue
def map = [name:"Gromit", likes:"cheese", id:1234]
def map2 =[map1:map]
map2.each{entry ->
println entry.key
entry.value.each {entry1 -> println entry1.key
println entry1.value
}
}
to access a single map i can issue
map.each{entry ->
println entry.key
println entry.value
}
'
我如何寫一個DSL對於上面的地圖示例中簡單的任何提示?
如果你說你想要dsl做什麼,它可能會更容易回答。 –