Gary> Does that mean the internals of arraycopy() look like this:

    Gary>    for (int i=0; i < num_elements; i++)
    Gary>       newArray[i] = oldArray[i];

No. arraycopy() is a native method but arraycopy(oldarray, 0, newarray,
0, num_elements) has the same effect has the above for-loop.


        Juergen

Reply via email to