博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
删除map、list集合元素总结
阅读量:6831 次
发布时间:2019-06-26

本文共 698 字,大约阅读时间需要 2 分钟。

删除map:

 

@Test

public void removeElementFromMap()
{
Map<Integer, String> test = new HashMap<Integer, String>();
test.put(1, "a");
test.put(2, "b");
test.put(3, "c");
test.put(4, "d");

Iterator<Entry<Integer, String>> it = test.entrySet().iterator();

int key = 0;

while (it.hasNext())
{
key = it.next().getKey();
if (key == 1)
{
it.remove();
}
}

System.out.println(test);

}

 

删除List集合元素:

@Test

public void removeElementFromList()
{
List<Integer> testList = new ArrayList<Integer>();
testList.add(1111);
testList.add(2222);
testList.add(3333);
testList.add(4444);

Iterator<Integer> it = testList.iterator();

int value = 0;

while (it.hasNext())
{
value = it.next();
if (value == 1111)
{
it.remove();
}
}
}

 

 

转载地址:http://rqtkl.baihongyu.com/

你可能感兴趣的文章
妙趣横生的算法--顺序表
查看>>
Xcode 5.0.2 下载地址
查看>>
Z.Studio高级成衣定制(双井店)价格,地址(图)-北京-大众点评网
查看>>
定时器
查看>>
【LeetCode】120. Triangle (3 solutions)
查看>>
boost::interprocess(1)
查看>>
Noi2011 : 智能车比赛
查看>>
设置tomcat 编译文件位置【转】
查看>>
NOI2010 : 超级钢琴
查看>>
sine曲线向前运动
查看>>
ios的@property属性和@synthesize属性(转)
查看>>
四种常见的 POST 提交数据方式
查看>>
编写一个C语言函数,要求输入一个url,输出该url是首页、目录页或者其他url
查看>>
ubuntu 14.04 chromium,firefox 怎样正确安装Adobe flash player
查看>>
Linux makefile 教程 很具体,且易懂
查看>>
linux用dd测试磁盘速度
查看>>
八大排序算法总结
查看>>
Fibre Channel和Fiber Channel
查看>>
两年前实习时的文档——Platform学习总结
查看>>
Performance Tuning MySQL
查看>>