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
- Porters: Performance suggestion Ernst de Haan
- Re: Porters: Performance suggestion Martin Sorgatz
- Re: Porters: Performance suggestion Ernst de Haan
- Re: Porters: Performance suggestion Uncle George
- Re: Porters: Performance suggestion Chris Sommers
- Re: Porters: Performance suggestion Ernst de Haan
- Re: Porters: Performance suggestion Gary Mart \(GAM22\)
- Juergen Kreileder