將1~100之間的所有正整數存放在一個List集合中, 並將集合中索引位置是10的對象從集合中移除。
[java]
- package com.han;
-
- import java.util.*;
-
- /**
- * 將1~100之間的所有正整數存放在一個List集合中,
- * 並將集合中索引位置是10的對象從集合中移除。
- * @author han
- *
- */
- public class ListApps {
-
- @SuppressWarnings("unchecked")
- public static void main(String[] args) {
- @SuppressWarnings("rawtypes")
- List list=new ArrayList();
- for (int j=1;j<=100;j++){
- list.add(j);
-
- }
- list.remove(10);
- System.out.println("將元素索引為“10”的元素從數組中移除後,數組中的元素是:");
- for (int j=0;j<list.size();j++){
- System.out.print(list.get(j)+" ");
- }
-
- }
-
- }