java.util.LinkedHashMap.clear()方法實例
java.util.LinkedHashMap.clear() 方法刪除所有來自此映射中的映射。此調用方法後映射將是空的。
聲明
以下是java.util.LinkedHashMap.clear()方法的聲明
public void clear()
參數
-
NA
返回值
此方法不返回任何值。
異常
-
NA
例子
下麵的示例演示java.util.LinkedHashMap.clear()方法的用法。
package com.yiibai; import java.util.*; public class BitSetDemo { public static void main(String[] args) { // create a new linked hash map LinkedHashMap map = new LinkedHashMap(5); // add some values in the map map.put("One", 1); map.put("Two", 2); map.put("Three", 3); // print the map System.out.println("Map:" + map); // clear the map map.clear(); // print the map System.out.println("Map:" + map); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Map:{One=1, Two=2, Three=3} Map:{}