Re: [android-developers] Re: C/C++ struct in android

2011-11-25 Thread Aitor Mendaza Ormaza
On Thu, Nov 24, 2011 at 8:44 PM, Lew lewbl...@gmail.com wrote: Bret Foreman wrote: If the OP is really concerned about performance he can create an array of objects and implement his own protocol for reusing them. Then after the initial creation of the array, no objects need to be either

[android-developers] Re: C/C++ struct in android

2011-11-24 Thread Bret Foreman
If the OP is really concerned about performance he can create an array of objects and implement his own protocol for reusing them. Then after the initial creation of the array, no objects need to be either created or destroyed. -- You received this message because you are subscribed to the

[android-developers] Re: C/C++ struct in android

2011-11-24 Thread Lew
Bret Foreman wrote: If the OP is really concerned about performance he can create an array of objects and implement his own protocol for reusing them. Then after the initial creation of the array, no objects need to be either created or destroyed. This might or might not have any effect on

Re: [android-developers] Re: C/C++ struct in android

2011-11-24 Thread Kristopher Micinski
On Thu, Nov 24, 2011 at 2:44 PM, Lew lewbl...@gmail.com wrote: Bret Foreman wrote: If the OP is really concerned about performance he can create an array of objects and implement his own protocol for reusing them. Then after the initial creation of the array, no objects need to be either

[android-developers] Re: C/C++ struct in android

2011-11-24 Thread Bret Foreman
On Nov 24, 11:44 am, Lew lewbl...@gmail.com wrote: Bret Foreman wrote: If the OP is really concerned about performance he can create an array of objects and implement his own protocol for reusing them. Then after the initial creation of the array, no objects need to be either created