Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/book/21-Arrays.md
Original file line number Diff line number Diff line change
Expand Up @@ -2045,7 +2045,7 @@ public class ParallelSetAll {

与使用for循环手工执行复制相比,**copyOf()** 和 **copyOfRange()** 复制数组要快得多。这些方法被重载以处理所有类型。

我们开始复制数组的整数和整数:
我们从复制 **int** 和 **Integer** 数组开始:
```JAVA
// arrays/ArrayCopying.java
// Demonstrate Arrays.copy() and Arrays.copyOf()
Expand Down