ListIterator add remove 使用注意
add方法示例
//在最前面添加List<String> list1 = new LinkedList<String>(Arrays.asList(new String[] { "a", "b", "c" }));ListIterator<String> listIterator1 = list1.listIterator();listIterator1.add("D");listIterator1.add("E");System.out.println(list1);//[D, E, a, b, c]//在最后面添加List<String> list2 = new LinkedList<String>(Arrays.asList(new String[] { "a", "b", "c" }));ListIterator<String> listIterator2 = list2.listIterator();while (listIterator2.hasNext()) {listIterator2.next();}listIterator2.add("D");listIterator2.add("E");System.out.println(list2);//[a, b, c, D, E]//在每个元素的前面和后面都添加List<String> list3 = new LinkedList<String>(Arrays.asList(new String[] { "a", "b", "c" }));ListIterator<String> listIterator3 = list3.listIterator();while (listIterator3.hasNext()) {listIterator3.add("前面");listIterator3.next();listIterator3.add("后面");}System.out.println(list3);//[前面, a, 后面, 前面, b, 后面, 前面, c, 后面]//在指定元素的前面和后面添加List<String> list4 = new LinkedList<String>(Arrays.asList(new String[] { "a", "b", "c" }));ListIterator<String> listIterator4 = list4.listIterator();while (listIterator4.hasNext()) {if (listIterator4.next().equals("a")) {//现在指向的是a的后面listIterator4.previous();//先重新指向a的前面,这里不用担心NoSuchElementExceptionlistIterator4.add("前面");//在前面添加元素,添加后还是指向的a的前面listIterator4.next();//向后【再】移动一位,现在指向的是a的后面listIterator4.add("后面");//在a的后面添加元素}}System.out.println(list4);//[前面, a, 后面, b, c]
remove方法
remove必须要跟在next()或是previous()之后,而且只能执行一次,删多个元素,需要再执行next()或previous()。在执行next()或previous()后不能先执行了 add()方法。因为add()方法执行以后,迭代器已经移动了,这样所要删除的目标元素指向不明,会报异常。//可以直接add,但不能直接remove,remove必须放在next之后try {List<String> list1 = new LinkedList<String>(Arrays.asList(new String[] { "a", "b", "c" }));ListIterator<String> listIterator1 = list1.listIterator();listIterator1.remove();} catch (Exception e) {System.out.println("直接remove会报 IllegalStateException");}//标准的做法:在next之后才能removeList<String> list2 = new LinkedList<String>(Arrays.asList(new String[] { "b", "a", "b", "c", "b", }));ListIterator<String> listIterator2 = list2.listIterator();while (listIterator2.hasNext()) {if (listIterator2.next().equals("b")) listIterator2.remove();}System.out.println(list2);//[a, c]//remove之前不能有add()try {List<String> list4 = new LinkedList<String>(Arrays.asList(new String[] { "a", "b", "c" }));ListIterator<String> listIterator4 = list4.listIterator();while (listIterator4.hasNext()) {if (listIterator4.next().equals("b")) {listIterator4.add("添加");listIterator4.remove();}}} catch (Exception e) {System.out.println("remove之前有add也会报 IllegalStateException");}//移除指定范围内的所有元素List<String> list3 = new LinkedList<String>(Arrays.asList(new String[] { "a", "开始", "b", "c", "d", "结束", "e" }));ListIterator<String> listIterator3 = list3.listIterator();while (listIterator3.hasNext()) {if (listIterator3.next().equals("开始")) {listIterator3.remove();//注释掉这行代码则不移除"开始"while (listIterator3.hasNext()) {if (!listIterator3.next().equals("结束")) {listIterator3.remove();//remove之后必须再调用next方法后才能再remove} else {listIterator3.remove();//注释掉这行代码则不移除"结束"break;//结束while循环}}}}System.out.println(list3);//[a, e]//替换指定元素List<String> list5 = new LinkedList<String>(Arrays.asList(new String[] { "a", "b", "c" }));ListIterator<String> listIterator5 = list5.listIterator();while (listIterator5.hasNext()) {if (listIterator5.next().equals("b")) {listIterator5.remove();listIterator5.add("替换");}}System.out.println(list5);//[a, 替换, c]
ListIterator add remove 使用注意的更多相关文章
- WIX: Hide installed program from the Add/Remove Programs window.
Reference article : How to hide an entry in the Add/Remove Programs applet? In Wix source files, set ...
- How to hide an entry in the Add/Remove Programs applet?
Original link: http://www.winhelponline.com/articles/15/1/How-to-hide-an-entry-in-the-AddRemove-Prog ...
- Maste Note for OCR / Vote disk Maintenance Operations (ADD/REMOVE/REPLACE/MOVE)
Doc ID 428681.1 Applies to: Oracle Database - Enterprise Edition - Version 10.2.0.1 to 11.2.0.1.0 [R ...
- 有关集合的foreach循环里的add/remove
转自:Hollis(微信号:hollischuang) 在阿里巴巴Java开发手册中,有这样一条规定: 但是手册中并没有给出具体原因,本文就来深入分析一下该规定背后的思考. 1 .foreach循环 ...
- HashSet——add remove contains方法底层代码分析(hashCode equals 方法的重写)
引言:我们都知道HashSet这个类有add remove contains方法,但是我们要深刻理解到底是怎么判断它是否重复加入了,什么时候才移除,什么时候才算是包括????????? add ...
- SharePoint自动化系列——Add/Remove "Record" from items
转载请注明出自天外归云的博客园:http://www.cnblogs.com/LanTianYou/ 目的:批量的将SharePoint items变成records或者将records变成普通的it ...
- SharePoint自动化系列——Add/Remove “Hold” from items
转载请注明出自天外归云的博客园:http://www.cnblogs.com/LanTianYou/ 问题1: 1.如果SharePoint item被添加了hold,通过UI界面来对SharePoi ...
- 阿里规范学习总结-不要再foreach对元素进行add()/remove()操作,
在foreach循环中,对元素进行 remove()/add() 操作需要使用Iterator ,如果运行在多线程环境下,需要对Iterator对象枷锁. public class ForeachTe ...
- LinkedList add remove get 代码分析
add void linkLast(E e) { //e 要添加的元素 final Node<E> l = last; // 最后一个元素 final Node<E> newN ...
随机推荐
- js删除选中的复选框中的父辈。
function scsx(){ var cb=document.getElementsByName('checkbox') if(confirm('删除?')){ for (var i=0;i< ...
- Ecshop后台菜单添加
首先需要修改四个文件:inc_priv.php, inc_menu.php, priv_action.php, commn.php 假如当前的项要加在商品管理的菜单下 一:在languages/zh_ ...
- Samba 服务器介绍
Samba是在Linux和UNIX系统上实现SMB协议的一个免费软件,由服务器及客户端程序构成.SMB(Server Messages Block,信息服务块)是一种在局域网上共享文件和打印机的一种通 ...
- web ajax跨域问题解决方案
jsonpHandler({ "code": "aaa", "price": 1780, "tickets": 5 ...
- 构建高可用web站点(五)
数据库是web站点中重要的应用,放在第四篇是因为之前来不及总结的原因,在之前的文章我看到了无论是Mysql或者是nosql的一些缓存和分布式一些比较扩展性的功能.但是对于单个数据库来说,它的优化也是我 ...
- h.264 FMO
在H.264之前的标准中,比如H.263,其比特流中的数据是按照一个宏块接一个宏块的方式排列的,一旦发生丢包,很多相邻宏块信息都会丢失,很难进行错误隐藏处理.在H.264中加入了一项新特性:把宏块在比 ...
- chrome_php logger 的实现原理
chrome_php是什么 1.chrome_php 是什么? 一款 Chrome 下用来配合调试 PHP 的工具,可以通过,console来查看php的信息 1.2用法 用法特别简单,有一个chro ...
- "Failed to fetch URL https://dl-ssl.google.com/android/repository/addons_list.xml,reason: Connection
"Failed to fetch URL https://dl-ssl.google.com/android/repository/addons_list.xml,reason: Conne ...
- 【HDOJ】2809 God of War
状态DP. /* 2809 */ #include <iostream> #include <queue> #include <cstdio> #include & ...
- 【HDOJ】4956 Poor Hanamichi
基本数学题一道,看错位数,当成大数减做了,而且还把方向看反了.所求为最接近l的值. #include <cstdio> int f(__int64 x) { int i, sum; i = ...