> For example, this:
>
>   byte b0, b1;
>   b0 = mMemory.data[0];
>   b1 = mMemory.data[1];
>
> is not as fast as:
>
>   byte[] data = mMemory.data;
>   byte b0, b1;
>   b0 = data[0];
>   b1 = data[1];

Isn't the JITter smart enough to convert (1) to (2) above?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to