返回此Map中包含的值的集合视图。
Collection values()
没有。
收集价值观。
以下是此方法的使用示例 -
class Example {
static void main(String[] args) {
def mp = ["TopicName" : "Maps", "TopicDescription" : "Methods in Maps"]
println(mp.values());
}
}
当我们运行上述程序时,我们将得到以下结果 -
[Maps, Methods in Maps]