mapconstructiontest.groovy
来自「Groovy动态语言 运行在JVM中的动态语言 可以方便的处理业务逻辑变化大的业」· GROOVY 代码 · 共 54 行
GROOVY
54 行
import java.util.HashMap
import java.util.Map
/**
* Tests creating Maps in Groovy
*
* @author <a href="mailto:james@coredevelopers.net">James Strachan</a>
* @version $Revision: 2281 $
*/
class MapConstructionTest extends GroovyTestCase {
void testMap() {
def m = [ 1 : 'abc', 2 : 'def', 3 : 'xyz' ]
println(m)
def mtoo = [ 1 : [ "innerKey" : "innerValue" ], 2 : m ]
println(mtoo)
assertMap(m)
}
def testMapAsParameter() {
assertMap([ 1 : 'abc', 2 : 'def', 3 : 'xyz' ])
}
def testMapViaHashMap() {
def m = new HashMap()
m.put(1, 'abc')
m.put(2, 'def')
m.put(3, 'xyz')
assertMap(m)
}
void assertMap(m) {
assert m instanceof Map
assert m.getClass().getName() == "java.util.HashMap"
def result = 0
def text = ""
for ( e in m ) {
result = result + e.key
text = text + e.value
}
assert result == 6
assert text == "abcdefxyz"
assert m.size() == 3
assert m[2] == 'def'
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?