Sunday, March 18, 2018

Groovy Map


// Start with an empty map
def ALEast [:]
assert ALEast instanceof HashMap

// Java put and get methods
ALEast.put('Boston','Red Sox')
assert 'Red Sox' == ALEast.get('Boston')
assert ALEast == [Boston:'Red Sox']

// Overridden putAt method
ALEast['New York''Yankees'

// Size method and dot access
assert == ALEast.size()
assert 'Red Sox' == ALEast.Boston
assert 'Yankees' == ALEast.'New York'

assert ALEast == [Boston:'Red Sox','New York':'Yankees']
assert ALEast['Boston'== 'Red Sox'

// Initialized map
Map<String,StringALCentral [Cleveland:'Indians',
   Chicago:'White Sox',Detroit:'Tigers']
assert == ALCentral.size()
assert ALCentral.Cleveland == 'Indians'

// Overridden plus method
def both ALEast ALCentral
assert == both.size()
assert both == [Boston:'Red Sox','New York':'Yankees',
Cleveland:'Indians'Chicago:'White Sox',Detroit:'Tigers']

// keySet method
assert ALEast.keySet(== ['Boston','New York'as Set

// Get method with a default
assert !ALEast.get('Toronto')
assert 'Blue Jays' == ALEast.get('Toronto','Blue Jays')
assert 'Blue Jays' == ALEast['Toronto']

def map [x:1y:2z:3]

// each iterator
String keys1 ''
List<Integervalues1 []
both.each key,val ->
keys1 += '|' key
values1 << val
}

String keys2 ''
List<Integervalues2 []
both.each entry ->
keys2 += '|' entry.key
values2 << entry.value
}
assert keys1 == keys2
assert values1 == values2

No comments:

Post a Comment

உப்பு மாங்காய்

சுருக்குப்பை கிழவி. சுருக்கங்கள் சூழ் கிழவி. பார்க்கும் போதெல்லாம் கூடையுடனே குடியிருப்பாள். கூடை நிறைய குட்டி குட்டி மாங்காய்கள். வெட்டிக்க...