java.util.TreeMap.values()方法實例
values() 方法用於返回此映射中包含的值的Collection視圖。集合的迭代器按升序返回相應的鍵的值。
聲明
以下是java.util.TreeMap.values()方法的聲明。
public Collection<V> values()
參數
-
NA
返回值
該方法調用返回此映射中包含的值的Collection視圖。
異常
-
NA
例子
下麵的示例演示java.util.TreeMap.values()方法的使用
package com.yiibai; import java.util.*; public class TreeMapDemo { public static void main(String[] args) { // creating maps TreeMap<Integer, String> treemap = new TreeMap<Integer, String>(); SortedMap<Integer, String> treemapincl = new TreeMap<Integer, String>(); // populating tree map treemap.put(2, "two"); treemap.put(1, "one"); treemap.put(3, "three"); treemap.put(6, "six"); treemap.put(5, "five"); System.out.println("Getting collection from the map"); Collection coll=treemap.values(); System.out.println("Value of the collection: "+coll); } }
現在編譯和運行上麵的代碼示例,將產生以下結果。
Getting collection from the map Value of the collection: [one, two, three, five, six]