| Author |
ArrayList, contains, objects
|
Manuel Leiria
Ranch Hand
Joined: Jul 13, 2007
Posts: 171
|
|
Hi, I receive an arraylist with several objects like this, but my arraylist contains equal objects (same name but different quantities and values). What I want to do is create an ArrayList with the distinct objects but summing the quantities and values. Example What I have and I want to create a new ArrayList containing Can you give some ideias? thanks in advance,
|
Manuel Leiria<br /> <br />--------------<br />Peace cannot be kept by force; it can only be achieved by understanding. <br /> Albert Einstein
|
 |
Vijayender Bandaru
Greenhorn
Joined: Nov 21, 2006
Posts: 21
|
|
Assuming you have all the getX methods in SomeObject CASE 1: If you have control over SomeObject and if you can modify it,then the solution is very simple. 1.remove final modifier for all instance varialbles. 2.In the equals method,whenever the object names are equal add up the current obj values with new object CASE 2: If you can't modify the SOmeObject class,here is the solution.
|
 |
 |
|
|
subject: ArrayList, contains, objects
|
|
|