0
Which ones problems I could face in the manipulation of arrays many a great?
When I say arrays I mean at least 25, each containing +of 1000 index.
- Performance:
Would my application’s performance be affected? I say for example, when loading Activity or changing a data from an index.
- Correct form:
In this case it would be more recommended to use a Arraylist<>? If so, why?
25 arrays ? This is certainly something wrong with the design. Shouldn’t it rather be an array of objects each having 25 fields ? Personally I don’t see many reasons to need 25 separate arrays
– Isac