No Array VS Long Array VS Multiple Short Arrays?

Bruce

Active member
Hello everyone,

I have a long list of short samples that I like to preload them.
As far as performance and memory concerns,
which is better?
1) No array list
2) Divide the long list of array into multiple short lists or
3) The other way around


Thank you very much
 
Solution
That's not how optimizing works @Bruce.

Arrays are an organizational tool - they let you group items together, iterate with elegance, and avoid conflicts, among other benifits. Using arrays does not by itself change performance in any meaningful way.

DC
That's not how optimizing works @Bruce.

Arrays are an organizational tool - they let you group items together, iterate with elegance, and avoid conflicts, among other benifits. Using arrays does not by itself change performance in any meaningful way.

DC
 
Solution
Back
Top Bottom