Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 如何在java中有效地复制数组?
使用Arrays.copyOf()or有什么好处System.arraycopy()吗?为什么我应该使用其中一种,在哪里使用?
Arrays.copyOf()
System.arraycopy()
你应该看看这两个链接:
备份
数组复制
正如上面 vulcan 所建议的,这很好地解释了它:什么更有效:System.arraycopy vs Arrays.copyOf?