当前位置:   article > 正文

浅谈Java中List的用法_java列表list的用法

java列表list的用法

List的基础介绍

List的关系图

在这里插入图片描述

List接口

List接口是一个有序的 Collection,使用此接口能够精确的控制每个元素插入的位置,能够通过索引(元素在List中位置,类似于数组的下标)来访问List中的元素,第一个元素的索引为 0,而且允许有相同的元素。

List 接口存储一组不唯一,有序(插入顺序)的对象。

ArrayList类

ArrayList类介绍

该类也是实现了List的接口,实现了可变大小的数组,随机访问和遍历元素时,提供更好的性能。该类也是非同步的,在多线程的情况下不要使用。ArrayList 增长当前长度的50%,插入删除效率低。

ArrayList基本使用

创建一个ArrayList对象
//方法一
List<Integer> list1 = new ArrayList<>();

//方法二
ArrayList<Integer> list2 = new ArrayList<>();
  • 1
  • 2
  • 3
  • 4
  • 5

两个新建ArrayList列表的方式没有本质的好差之分,只是创建逻辑的不同。

方法一是根据List接口来实例化实现它的ArrayList类;而方法二是直接实例化ArrayList对象。

ArrayList的基本使用

ArrayList的基本使用方式:

  • add方法添加元素,默认在列表末尾添加
  • get方法获取元素,根据下标获取元素
  • remove方法移除元素
    1.根据下标移除元素
    2.根据对象移除元素(只会移除第一个匹配对象)
/**
 * 新建ArrayList列表
 */
List<String> animals = new ArrayList<>();

/**
 * 插入元素
 *
 * 按顺序插入,下标从0开始
 */
animals.add("panda");
animals.add("pig");
animals.add("cat");
animals.add("dog");
System.out.println("插入元素后的列表:"+animals);

/**
 * 获取元素
 */
String animal = animals.get(1);
System.out.println("获取下标为1的元素:"+animal);

/**
 * 移除元素
 */
//根据下标移除元素
animals.remove(1);
System.out.println("根据下标移除元素后的列表:"+animals);
//再插入一个panda
animals.add("panda");
System.out.println("插入元素后的列表:"+animals);
//根据对象移除元素
animals.remove("panda");
System.out.println("根据对象移除元素后的列表:"+animals);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34

运行结果如下:
在这里插入图片描述

ArrayList列表的长度
/**
 * 新建ArrayList列表
 */
List<String> animals = new ArrayList<>();

/**
 * 插入元素
 *
 * 按顺序插入,下标从0开始
 */
animals.add("panda");
animals.add("pig");
animals.add("cat");
animals.add("dog");
System.out.println("插入元素后的列表:"+animals);

/**
 * 获取列表的大小(长度)
 *
 * .size()
 */
System.out.println("列表的大小:"+animals.size());
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22

运行结果如下:
在这里插入图片描述

ArrayList列表中是否包含某个元素
/**
 * 新建ArrayList列表
 */
List<String> animals = new ArrayList<>();

/**
 * 插入元素
 *
 * 按顺序插入,下标从0开始
 */
animals.add("panda");
animals.add("pig");
animals.add("cat");
animals.add("dog");
System.out.println("插入元素后的列表:"+animals);

/**
 * 查询ArrayList列表中是否包含某个元素
 */
System.out.println("查询ArrayList列表中是否包含tiger:"+animals.contains("tiger"));
System.out.println("查询ArrayList列表中是否包含dog:"+animals.contains("dog"));
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21

运行结果如下:
在这里插入图片描述

ArrayList列表中根据索引将元素数值改变(替换)
/**
 * 新建ArrayList列表
 */
List<String> animals = new ArrayList<>();

/**
 * 插入元素
 *
 * 按顺序插入,下标从0开始
 */
animals.add("panda");
animals.add("pig");
animals.add("cat");
animals.add("dog");
System.out.println("插入元素后的列表:"+animals);

/**
 * 在指定下标插入元素
 * 
 * .add(index, element);
 */
animals.add(2,"monkey");
System.out.println("修改后的列表:"+animals);

/**
 * 将指定下标的元素进行替换
 *
 * .set(index, element)
 */
animals.set(3,"mouse");
System.out.println("修改后的列表:"+animals);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31

运行结果如下:
在这里插入图片描述

list中查看(判断)元素的索引
/**
 * 新建ArrayList列表
 */
List<String> animals = new ArrayList<>();

/**
 * 插入元素
 *
 * 按顺序插入,下标从0开始
 */
animals.add("panda");
animals.add("pig");
animals.add("cat");
animals.add("pig");
animals.add("dog");
animals.add("pig");
System.out.println("插入元素后的列表:"+animals);

/**
 * 查询元素第一次出现的位置
 *
 * .indexOf(element);
 */
System.out.println("pig第一次出现的位置:"+animals.indexOf("pig"));

/**
 * 查询元素最后一次出现的位置
 *
 * .lastIndexOf(element);
 */
System.out.println("pig最后一次出现的位置"+animals.lastIndexOf("pig"));
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31

运行结果如下:
在这里插入图片描述

根据下标截取列表的一部分生成新的列表
/**
 * 新建ArrayList列表
 */
List<String> animals = new ArrayList<>();

/**
 * 插入元素
 *
 * 按顺序插入,下标从0开始
 */
animals.add("panda");
animals.add("pig");
animals.add("cat");
animals.add("dog");
System.out.println("插入元素后的列表:"+animals);

/**
 * 根据下标截取列表的一部分生成新的列表
 *
 * .subList(fromIndex,toIndex)
 * fromIndex 截取的起始下标(包含)
 * toIndex 截取的终止下标(不包含)
 */
List<String> childList = animals.subList(1,3);
System.out.println("截取的列表为:"+childList);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25

运行结果如下:
在这里插入图片描述

数组转ArrayList

1、通过 Arrays.asList(strArray) 方式,将数组转换List后,不能对List增删,只能查改,否则抛异常

ArrayList<T> list = Arrays.asList(array);

String[] strArray = new String[2];
ArrayList<String> list = Arrays.asList(strArray);
  • 1
  • 2

2、数组转为List后,支持增删改查的方式
通过ArrayList的构造器,将Arrays.asList(strArray)的返回值由java.util.Arrays.ArrayList转为java.util.ArrayList。

ArrayList<String> list = new ArrayList<String>(Arrays.asList(strArray)) ;

String[] strArray = new String[2];
ArrayList<String> list = new ArrayList<String>(Arrays.asList(strArray)) ;
list.add("1");
  • 1
  • 2
  • 3

3、通过集合工具类Collections.addAll()方法
通过Collections.addAll(arrayList, strArray)方式转换,根据数组的长度创建一个长度相同的List,然后通过Collections.addAll()方法,将数组中的元素转为二进制,然后添加到List中,这是最高效的方法。

ArrayList< String> arrayList = new ArrayList(strArray.length);
Collections.addAll(arrayList, strArray);

String[] strArray = new String[2];
ArrayList< String> arrayList = new ArrayList<String>(strArray.length);
Collections.addAll(arrayList, strArray);
arrayList.add("1");
  • 1
  • 2
  • 3
  • 4

注:附上Collections.addAll()方法源码:

public static <T> boolean addAll(Collection<? super T> c, T... elements) {
        boolean result = false;
        for (T element : elements)
            result |= c.add(element);//result和c.add(element)按位或运算,然后赋值给result
        return result;
 }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

LinkedList类

本文到此为止 LinkedList类的使用先欠着,得空就来填坑
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/代码探险家/article/detail/771427
推荐阅读
相关标签
  

闽ICP备14008679号