clear方法会把整个map清空吗?

问题描述:

  在java语言中,map的clear方法会把整个map清空吗?

问题解答:

  答案是肯定的

测试代码:

    HashMap hashMap = new HashMap();

    hashMap.put(“1”, “mqboss”);

    hashMap.put(“2”, “Jboss”);

    System.out.println(“hashMap: ” + hashMap);

    hashMap.clear();

    System.out.println(“hashMap: ” + hashMap);

测试输出:

  hashMap: {2=Jboss, 1=mqboss}

  hashMap: {}



=====================

from:http://blog.csdn.net/mqboss/article/details/1671884     Salute to the author

    原文作者:corpse2010
    原文地址: https://blog.csdn.net/corpse2010/article/details/37610059
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞