Java, storing objects in array?
-
i have a class Person which creates Person-objects, and i need to store these objects in an array located in another class Payroll. also need methods to add and remove Persons from this array. how do i do this?
-
Answer:
private List<Person> people = new ArrayList<Person>(); public void addPerson(Person person) { people.add(person); } public Person removePerson(Person person) { Person p = null; int idx = people.indexOf(person) if (idx != -1) { Person p = people.remove(idx); } return p; } Or something along those lines depending on how you want to remove the person from the array. Of course, you could make removePerson a void method if you don't care about getting back the object you are removing from the array. Also, if you are going to be doing a lot of adding and removing, a LinkedList might be more efficient than an ArrayList. It has the same interface though, so the code above is the same except you change ArrayList to LinkedList.
Morten H at Yahoo! Answers Visit the source
Related Q & A:
- How to Implement Gateway Service something similar to Oracle API gateway Using Java and Java based Open Source frameworks only?Best solution by Quora
- How to post an array of complex objects (that has an array of complex objects) with jQuery?Best solution by Stack Overflow
- how can i remove an array from an array?Best solution by Stack Overflow
- How to hashMap an array in Java?Best solution by Stack Overflow
- How many objects are eligible for Garbage collection in Java?Best solution by stackoverflow.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.