Java LinkedHashMap clear()方法

java.util.LinkedHashMap.clear() 方法用于删除LinkedHashMap中的所有元素。

1 语法

public void clear()

2 参数

3 返回值

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.util.LinkedHashMap.clear()方法的例子
 */
import java.util.*;

public class Demo {
    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:{}

热门文章

优秀文章