集合框架05:List接口使用、List实现类、ArrayList使用

视频链接:13.11 ArrayList使用_哔哩哔哩_bilibilihttps://www.bilibili.com/video/BV1zD4y1Q7Fw?p=11&vd_source=b5775c3a4ea16a5306db9c7c1c1486b5

1.List接口使用代码举例

java 复制代码
package com.yundait.Demo01;

import java.util.ArrayList;
import java.util.List;

public class ListDemo02 {
    public static void main(String[] args){
        //创建集合
        List list = new ArrayList<>();

        //1.添加数字数据(自动装箱)
        list.add(20);
        list.add(30);
        list.add(40);
        list.add(50);
        list.add(60);
        System.out.println("元素个数" + list.size());
        System.out.println(list.toString());

        //2.删除操作
        //list.remove(0);通过下标方式删除
        list.remove(new Integer(20));
        System.out.println("元素个数" + list.size());
        System.out.println(list.toString());

        //3.subList方法;返回子集合,含头不含尾(左闭右开)
        List subList = list.subList(1, 3);
        System.out.println(subList.toString());
    }

}

输出结果:

2.List实现类介绍

3.ArrayList使用代码示例

重写Student类的equals方法:

java 复制代码
package com.yundait.Demo01;

/**
 *
 *学生类
 * @author zhang
 */
public class Student {
    private String name;
    private int age;

    public Student() {
    }

    public Student(String name, int age) {
        this.name = name;
        this.age = age;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }

    @Override
    public String toString() {
        return "Student{" +
                "name='" + name + '\'' +
                ", age=" + age +
                '}';
    }

    @Override
    public boolean equals(Object obj) {
        //1.判断是不是同一个对象
        if (this==obj){
            return true;
        }

        //2.判断是否为空
        if (obj==null){
            return false;
        }

        //3.判断是否为Student类型
        if (obj instanceof Student){

            Student s = (Student)obj;
            //4.比较属性
            if (this.name.equals(s.getName())&&this.age == s.getAge()){
                return true;
            }
        }
        
        //5.不满足条件返回false
        return false;
    }
}
java 复制代码
package com.yundait.Demo01;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.ListIterator;

public class ArrayListDemo01 {
    public static void main(String[] args) {
        //创建集合
        ArrayList arrayList = new ArrayList<>();

        //1.添加元素
        Student s1 = new Student("刘德华",20);
        Student s2 = new Student("郭富城",22);
        Student s3 = new Student("梁朝伟",24);
        Student s4 = new Student("甄子丹",18);
        arrayList.add(s1);
        arrayList.add(s2);
        arrayList.add(s3);
        arrayList.add(s4);
        System.out.println("元素个数" + arrayList.size());
        System.out.println(arrayList.toString());

        //2.删除元素
        //arrayList.remove(s1);
        arrayList.remove(new Student("刘德华",20)); //要想以这种方式删除需要重写equals方法
        System.out.println("删除之后元素个数" + arrayList.size());
        System.out.println(arrayList.toString());

        //3.遍历
        //3.1 使用Iterator进行遍历
        System.out.println("--------3.1 使用Iterator进行遍历---------");
        Iterator it = arrayList.iterator();
        while (it.hasNext()){
            Student s = (Student)it.next();
            System.out.println(s.toString());
        }

        //3.2使用ListIterator进行正序遍历
        System.out.println("----------3.2使用ListIterator进行正序遍历-----------");
        ListIterator lit= arrayList.listIterator();
        while(lit.hasNext()){
            Student s = (Student) lit.next();
            System.out.println(s.toString());
        }

        //3.3使用ListIterator进行逆序遍历
        System.out.println("----------3.2使用ListIterator进行逆序遍历-----------");
        while (lit.hasPrevious()){
            Student s = (Student) lit.previous();
            System.out.println(s.toString());
        }

        //4.判断
        //要实现一下方式删除的前提也是需要重写equals方法
        System.out.println(arrayList.contains(new Student("梁朝伟",24)));
        System.out.println(arrayList.isEmpty());

        //查找元素位置
        System.out.println(arrayList.indexOf(new Student("梁朝伟",24)));

    }
}

输出结果:

相关推荐
水云桐程序员5 小时前
C++可以写手机应用吗
开发语言·c++·智能手机
测试员周周5 小时前
【AI测试智能体】为什么传统测试方法对智能体失效?
开发语言·人工智能·python·功能测试·测试工具·单元测试·测试用例
RSTJ_16256 小时前
PYTHON+AI LLM DAY THREETY-NINE
开发语言·人工智能·python
想学习java初学者6 小时前
SpringBoot整合Vertx-Mqtt多租户(优化版)
java·spring boot·后端
AC赳赳老秦6 小时前
政企内网落地:OpenClaw 离线环境深度适配方案,无外网场景下本地化模型对接与全功能使用
java·大数据·运维·python·自动化·deepseek·openclaw
赏金术士6 小时前
Kotlin 从入门到进阶 之函数模块(核心基础)(二)
android·开发语言·kotlin
weixin_449173657 小时前
在 Java 中,‌线程安全的 List‌ 主要有以下几种实现方式,它们的效率取决于具体的使用场景(尤其是读写比例):
java·线程安全的list
砚底藏山河7 小时前
股票数据API接口:如何获取股票历历史分时KDJ数据
java·python·maven
炸膛坦客8 小时前
嵌入式 - 数据结构与算法:(1-7)数据结构 - 顺序表和链表的对比
数据结构·链表
MegaDataFlowers8 小时前
运行若依项目
java