ArrayList的深拷贝与浅拷贝

1、深拷贝

通过以下代码进行理解

java 复制代码
import java.util.ArrayList;
import java.util.List;
 
public class Demo {
    public static void main(String[] args) {
        List<Integer> c = new ArrayList<>();
        c.add(1);
        c.add(2);
        c.add(3);
 
        List<Integer> c1 = new ArrayList<>(c);//深拷贝
        System.out.println(c);
        System.out.println(c1);
    }
}

输出结果为:(c和c1输出的结果相同)

2、浅拷贝

通过以下代码进行理解

java 复制代码
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
 
public class Demo {
    public static void main(String[] args) {
        List<Integer> c = new ArrayList<>();
        c.add(1);
        c.add(2);
        c.add(3);
        c.add(4);
        c.add(5);
 
        System.out.println(c);
        List<Integer> c1 = c.subList(2,5);
        System.out.println(c1);
        List<Integer> c2 = Collections.singletonList(c1.set(2, 99));
        System.out.println(c1);
        System.out.println(c);
 
    }
}

输出结果为:

submit进行的是浅拷贝,因此c的值也会进行改变

相关推荐
luyun02020230 分钟前
牛批了,某音录播神器
java·windows·figma
a***56061 小时前
Windows上安装Go并配置环境变量(图文步骤)
开发语言·windows·golang
IFTICing2 小时前
【环境配置】ffmpeg下载、安装、配置(Windows环境)
windows·ffmpeg
无限进步_4 小时前
C语言数组元素删除算法详解:从基础实现到性能优化
c语言·开发语言·windows·git·算法·github·visual studio
自由的好好干活5 小时前
使用Qoder编写ztdaq的C#跨平台示例总结
linux·windows·c#·qoder
x***44019 小时前
Windows操作系统部署Tomcat详细讲解
java·windows·tomcat
CryptoPP10 小时前
使用 KLineChart 这个轻量级的前端图表库
服务器·开发语言·前端·windows·后端·golang
w***744021 小时前
SQL Server2022版详细安装教程(Windows)
windows
IT逆夜1 天前
实现Yum本地仓库自动同步的完整方案(CentOS 7)
linux·运维·windows
v***59831 天前
DeepSeek API 调用 - Spring Boot 实现
windows·spring boot·后端