Method arraycopy(Object src, int srcPos, Object dest, int destPos, int length)
Return type: void
Member of: java.lang.System
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 System.arraycopy(from, 0, to, 0, size);
2 System.arraycopy(array, 0, newArray, 0, Array.getLength(array));
3 System.arraycopy(objs, 0, nlts, 0, objs.length);
4 System.arraycopy(svc.myPortsArr, 0, this.myPortsArr, 0, svc.myPortsArr.length);
5 System.arraycopy(array, 0, newArray, 0, newLength-1);
6 System.arraycopy(in[i], 0, data[i], 0, nCols);
7 System.arraycopy (
8 System.arraycopy (array, 0, newArray, 0, currentSize);
9 System.arraycopy(
10 System.arraycopy(obj, 0, retval, 0, arrayLength);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.