mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-22 23:01:41 +03:00
[groovy] small fix in iteration over a map
This commit is contained in:
parent
c7036d6e89
commit
9afd4fd1bd
@ -233,10 +233,12 @@ for (i in array) {
|
||||
|
||||
//Itera per un mapa
|
||||
def map = ['name':'Roberto', 'framework':'Grails', 'language':'Groovy']
|
||||
x = 0
|
||||
x = ""
|
||||
for ( e in map ) {
|
||||
x += e.value
|
||||
x += " "
|
||||
}
|
||||
assert x.equals("Roberto Grails Groovy ")
|
||||
|
||||
/*
|
||||
Operadors
|
||||
|
@ -232,10 +232,12 @@ for (i in array) {
|
||||
|
||||
// Iterando sobre un mapa
|
||||
def map = ['name':'Roberto', 'framework':'Grails', 'language':'Groovy']
|
||||
x = 0
|
||||
x = ""
|
||||
for ( e in map ) {
|
||||
x += e.value
|
||||
x += " "
|
||||
}
|
||||
assert x.equals("Roberto Grails Groovy ")
|
||||
|
||||
/*
|
||||
Operadores
|
||||
|
@ -230,10 +230,12 @@ for (i in array) {
|
||||
|
||||
//Iterate over a map
|
||||
def map = ['name':'Roberto', 'framework':'Grails', 'language':'Groovy']
|
||||
x = 0
|
||||
x = ""
|
||||
for ( e in map ) {
|
||||
x += e.value
|
||||
x += " "
|
||||
}
|
||||
assert x.equals("Roberto Grails Groovy ")
|
||||
|
||||
/*
|
||||
Operators
|
||||
|
@ -226,10 +226,12 @@ for (i in array) {
|
||||
|
||||
//Itera sobre um mapa
|
||||
def map = ['name':'Roberto', 'framework':'Grails', 'language':'Groovy']
|
||||
x = 0
|
||||
x = ""
|
||||
for ( e in map ) {
|
||||
x += e.value
|
||||
x += " "
|
||||
}
|
||||
assert x.equals("Roberto Grails Groovy ")
|
||||
|
||||
/*
|
||||
Operadores
|
||||
|
@ -219,10 +219,12 @@ for (i in array) {
|
||||
|
||||
//遍历映射
|
||||
def map = ['name':'Roberto', 'framework':'Grails', 'language':'Groovy']
|
||||
x = 0
|
||||
x = ""
|
||||
for ( e in map ) {
|
||||
x += e.value
|
||||
x += " "
|
||||
}
|
||||
assert x.equals("Roberto Grails Groovy ")
|
||||
|
||||
/*
|
||||
运算符
|
||||
|
Loading…
Reference in New Issue
Block a user