集合类-list
Posted 鱼在我这里
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了集合类-list相关的知识,希望对你有一定的参考价值。
将1-100之间的索引正整数房子一个list集合中,并将索引位置是10的对象从集合移除。
package com.hanqi.jh; import java.util.*; public class Homework0528 { public static void main(String[] args) { ArrayList<Integer> ls=new ArrayList<Integer>(); for(int i=1;i<=100;i++) { ls.add(i); } ls.remove(10); for(int j : ls) { System.out.println(j); } } }
运行结果:
以上是关于集合类-list的主要内容,如果未能解决你的问题,请参考以下文章