mirror of
https://github.com/Snailclimb/JavaGuide
synced 2025-06-16 18:10:13 +08:00
commit
4209e67a95
@ -223,7 +223,7 @@ public class ArraycopyTest {
|
|||||||
System.arraycopy(a, 2, a, 3, 3);
|
System.arraycopy(a, 2, a, 3, 3);
|
||||||
a[2]=99;
|
a[2]=99;
|
||||||
for (int i = 0; i < a.length; i++) {
|
for (int i = 0; i < a.length; i++) {
|
||||||
System.out.println(a[i]);
|
System.out.print(a[i] + " ");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user