本文目录一览:
java list是什么
就是一种集合对象,将所有的对象集中到一起存储。
list里面可以放java对象,可以直接放值。
List list = new ArrayList();
list.add("AAA");
list.add(123);
java中List是什么意思?
List指的是集合.是泛型,里面指定了这个集合中存放的是什么数据.
比如有一个学生类Student,Student里面包含了学生的一些信息.这样每一个Student对象就代表了一个学生.此时ListStudent就代表这个集合中存放了很多个学生对象,这个集合就像一个班级一样.
JAVA中的List的使用
ListE([]内的内容可省略),与数组类似:
实例化:List[数据类型] list = new ArrayList[数据类型]();
获得集合内元素个数:list.size();
添加元素:
默认添加:list.add(e);
指定下标添加(添加后下标后的元素向后挪一位):list.add(index,e);
删除元素:
返回是否删除:list.remove(e);
直接删除指定下标的元素(只删除找到的第一个相符合的元素):list.remove(index);
替换元素(替换掉指定下标的元素):list.set(index,e);
取出元素:list.get(index);
清空集合:list.clear();
判断集合中是否存在某个元素(存在返回true,不存在返回false):list.contains(e);
对比两个集合中的所有元素:
两个对象一定相等:list.equals(list2);
两个对象不一定相等:list.hashCode() == list2.hashCode();
(两个相等对象的equals方法一定为true, 但两个hashcode相等的对象不一定是相等的对象。)
获得元素下标:
元素存在则返回找到的第一个元素的下标,不存在则返回-1:list.indexOf(e);
元素存在则返回找到的最后一个元素的下标,不存在则返回-1:list.lastIndexOf(e);
判断集合是否为空(空则返回true,非空则返回false):list.isEmpty();
返回Iterator集合对象:list.iterator();
将集合转换为字符串:list.toString();
截取集合(从fromIndex开始在toIndex前结束,[fromIndex,toIndex)):list.subList(fromIndex,toIndex);
将集合转换为数组:
默认类型:list.toArray();
指定类型(objects为指定类型的数组对象,并将转换好的数组赋值给objects数组):list.toArray(objects);
以上为List常用的方法。
java的List操作
ListInteger list = new ArrayListInteger();
list.add("a");
list.add("b");
list.add("c");
list.add("bb);
list.add("dd");
list.add("a");
MapInteger,Integer map = new HashMapInteger,Integer();
for(Integer i :list){
map.put(i, map.get(i)+1);
}
for (Object o : map.keySet()) {
System.out.println(o + "出现次数:" + map.get(o));
}
参考一下