赞
踩
- //集合类LinkedList创立的元素tempList之遍历及删除
-
- import java.util.LinkedList;
-
- public class LiP23 {
- public static void main(String[] args) {
- LinkedList<String> tempList=new LinkedList<String>();
- tempList.add("a");
- tempList.add("b");
- tempList.add("c");
-
- for(int i=0;i<tempList.size();i++){
- tempList.remove(i);
- --i; //此句很关键
- }
-
- if(tempList.size()>0){
- System.out.println("剩余元素的个数为:"+tempList.size());
- System.out.print("剩余元素为:");
-
- for(String item:tempList){ //item是任意起的名字
- System.out.println(item+" ");
- }
- }
- else{
- System.out.println("已删除所有的元素!");
- }
- }
-
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。