mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 07:12:31 +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
|
//Itera per un mapa
|
||||||
def map = ['name':'Roberto', 'framework':'Grails', 'language':'Groovy']
|
def map = ['name':'Roberto', 'framework':'Grails', 'language':'Groovy']
|
||||||
x = 0
|
x = ""
|
||||||
for ( e in map ) {
|
for ( e in map ) {
|
||||||
x += e.value
|
x += e.value
|
||||||
|
x += " "
|
||||||
}
|
}
|
||||||
|
assert x.equals("Roberto Grails Groovy ")
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Operadors
|
Operadors
|
||||||
|
@ -232,10 +232,12 @@ for (i in array) {
|
|||||||
|
|
||||||
// Iterando sobre un mapa
|
// Iterando sobre un mapa
|
||||||
def map = ['name':'Roberto', 'framework':'Grails', 'language':'Groovy']
|
def map = ['name':'Roberto', 'framework':'Grails', 'language':'Groovy']
|
||||||
x = 0
|
x = ""
|
||||||
for ( e in map ) {
|
for ( e in map ) {
|
||||||
x += e.value
|
x += e.value
|
||||||
|
x += " "
|
||||||
}
|
}
|
||||||
|
assert x.equals("Roberto Grails Groovy ")
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Operadores
|
Operadores
|
||||||
|
@ -230,10 +230,12 @@ for (i in array) {
|
|||||||
|
|
||||||
//Iterate over a map
|
//Iterate over a map
|
||||||
def map = ['name':'Roberto', 'framework':'Grails', 'language':'Groovy']
|
def map = ['name':'Roberto', 'framework':'Grails', 'language':'Groovy']
|
||||||
x = 0
|
x = ""
|
||||||
for ( e in map ) {
|
for ( e in map ) {
|
||||||
x += e.value
|
x += e.value
|
||||||
|
x += " "
|
||||||
}
|
}
|
||||||
|
assert x.equals("Roberto Grails Groovy ")
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Operators
|
Operators
|
||||||
|
@ -226,10 +226,12 @@ for (i in array) {
|
|||||||
|
|
||||||
//Itera sobre um mapa
|
//Itera sobre um mapa
|
||||||
def map = ['name':'Roberto', 'framework':'Grails', 'language':'Groovy']
|
def map = ['name':'Roberto', 'framework':'Grails', 'language':'Groovy']
|
||||||
x = 0
|
x = ""
|
||||||
for ( e in map ) {
|
for ( e in map ) {
|
||||||
x += e.value
|
x += e.value
|
||||||
|
x += " "
|
||||||
}
|
}
|
||||||
|
assert x.equals("Roberto Grails Groovy ")
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Operadores
|
Operadores
|
||||||
|
@ -219,10 +219,12 @@ for (i in array) {
|
|||||||
|
|
||||||
//遍历映射
|
//遍历映射
|
||||||
def map = ['name':'Roberto', 'framework':'Grails', 'language':'Groovy']
|
def map = ['name':'Roberto', 'framework':'Grails', 'language':'Groovy']
|
||||||
x = 0
|
x = ""
|
||||||
for ( e in map ) {
|
for ( e in map ) {
|
||||||
x += e.value
|
x += e.value
|
||||||
|
x += " "
|
||||||
}
|
}
|
||||||
|
assert x.equals("Roberto Grails Groovy ")
|
||||||
|
|
||||||
/*
|
/*
|
||||||
运算符
|
运算符
|
||||||
|
Loading…
Reference in New Issue
Block a user