210821-实战小技巧11:数组拷贝

文章目录
  1. 1. 基础写法
  2. 2. 借用容器中转
  3. 3. Array.copy
  4. 4. System.arraycopy
  • II. 其他
    1. 1. 一灰灰Blog: https://liuyueyi.github.io/hexblog
    2. 2. 声明
    3. 3. 扫描关注
  • 每天一个实战小技巧,数组拷贝

    说实话,在实际的业务开发中,基本上很少很少很少…会遇到数组拷贝的场景,甚至是我们一般都不怎么用数组,List它不香嘛,为啥要用数组

    现在问题来了,要实现数组拷贝,怎么整?

    1. 基础写法

    最简单直接的写法,那就是新建一个数组,一个一个拷贝进去,不就完事了么

    1
    2
    3
    4
    5
    String[] data = new String[]{"1", "2", "3"};
    String[] ans = new String[data.length];
    for (int index = 0; index < data.length; index ++) {
    ans[index] = data[index];
    }

    2. 借用容器中转

    数组用起来有点麻烦,还是用容器舒爽,借助List来实现数组的拷贝,也就几行代码

    1
    2
    3
    4
    String[] data = new String[]{"1", "2", "3"};
    List<String> list = Arrays.asList(data);
    String[] out = new String[data.length];
    list.toArray(out);

    3. Array.copy

    上面这个有点绕得远了, 直接使用Array.copy

    1
    2
    String[] data = new String[]{"1", "2", "3"};
    String[] out = Arrays.copyOf(data, data.length);

    4. System.arraycopy

    除了上面的,还可以使用更基础的用法

    1
    2
    3
    String[] data = new String[]{"1", "2", "3"};
    String[] out = new String[data.length];
    System.arraycopy(data, 0, out, 0, data.length);

    如果有看过jdk源码的小伙伴,上面这个用法应该不会陌生,特别是在容器类,这种数组拷贝的方式比比可见

    参数说明:

    1
    2
    3
    public static native void arraycopy(Object src,  int  srcPos,
    Object dest, int destPos,
    int length);
    • src : 原数组
    • srcPos: 原数组用于拷贝的起始下标
    • dest: 拷贝后的数组
    • destPos: 目标数组的小标
    • length: 原数组中拷贝过去的数组长度

    从上面的描述也能看出来,这个方法不仅能实现数组拷贝,还可以实现数组内指定片段的拷贝

    系列博文:

    II. 其他

    1. 一灰灰Bloghttps://liuyueyi.github.io/hexblog

    一灰灰的个人博客,记录所有学习和工作中的博文,欢迎大家前去逛逛

    2. 声明

    尽信书则不如,以上内容,纯属一家之言,因个人能力有限,难免有疏漏和错误之处,如发现bug或者有更好的建议,欢迎批评指正,不吝感激

    3. 扫描关注

    一灰灰blog

    QrCode

    评论

    Your browser is out-of-date!

    Update your browser to view this website correctly. Update my browser now

    ×