Already values in another java class arraylist, now i need to get those values from arraylist in another java class ?
How to get those vlaues from another java class arraylist?
|
Already values in another java class arraylist, now i need to get those values from arraylist in another java class ? How to get those vlaues from another java class arraylist? |
|||
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
You can expose the ArrayList as a public member of your class, but often it is better to expose a more restricted interface so that users of your class cannot for example modify the contents of the ArrayList when you only wanted to allow them read access.
|
||||
|
|
|
If I've read this correctly (unlikely) you have an array list contained within one class. You can either expose the array list via an accessor:
but that exposes your whole list to clients, so another option is to expose suitable methods for accessing it e.g.
(you'd likely need a similar method to expose the length) |
|||||||
|
myArrayList.get(index)... – Aaron Yodaiken Jun 30 '10 at 19:26