1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-16 18:10:13 +08:00

Merge pull request #838 from wenchunl/develop

Update ArrayList-Grow.md
This commit is contained in:
SnailClimb 2020-06-30 21:07:21 +08:00 committed by GitHub
commit 4209e67a95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -223,7 +223,7 @@ public class ArraycopyTest {
System.arraycopy(a, 2, a, 3, 3);
a[2]=99;
for (int i = 0; i < a.length; i++) {
System.out.println(a[i]);
System.out.print(a[i] + " ");
}
}