System-arraycopy和Arrays-copyof的区别
title: System.arraycopy和Arrays.copyof的区别
date: 2021-05-31 21:22:04
tag:
突然用到这两个,感觉很好奇,对比一下
首先看源码
这是Arrays.copyof的源码
public static <T,U> T[] copyOf(U[] original, int newLength, Class<? extends T[]> newType) {
@SuppressWarnings("unc.
原创
2021-07-05 09:32:58 ·
82 阅读 ·
0 评论