Given an Array of n Objects, let's say is an Array of Strings, and it has the following values:
foo[0]="a";
foo[1]="cc";
foo[2]="a";
foo[3]="dd";
What do I have to do to delete/remove all the Strings/Objects equal to "a" in the Array?
Thanks!
|
2
|
Given an Array of n Objects, let's say is an Array of Strings, and it has the following values:
What do I have to do to delete/remove all the Strings/Objects equal to "a" in the Array?
|
||||||
|
|
|
[If you want some ready-to-use code, please scroll to my "Edit3" (after the cut). The rest is here for posterity.] To flesh out Dustman's idea:
Edit: I'm now using Edit2: The above approach retains the same array (so the array is still the same length); the element after the last is set to null. If you want a new array sized exactly as required, use this instead:
Edit3: If you use this code on a frequent basis in the same class, you may wish to consider adding this to your class:
Then the function becomes:
This will then stop littering your heap with useless empty string arrays that would otherwise be cynicalman's suggestion (see comments) will also help with the heap littering, and for fairness I should mention it:
I prefer my approach, because it may be easier to get the explicit size wrong (e.g., calling |
||||||||||
|
|
|
Make a Not terribly performant, but if you encapsulate it properly, you can always do something quicker later on. |
||||||||||
|
|
|
You can always do:
|
||
|
|
|
|
Something about the make a list of it then remove then back to an array strikes me as wrong. Haven't tested, but I think the following will perform better. Yes I'm probably unduly pre-optimizing.
|
|||
|
|
|
|
arrgh can't get code to show up correctly. sorry got it working. sorry again i don't think I read the question properly
|
|||
|
|
|
|
EDIT: The point with the nulls in the array has been cleared. Sorry for my comments. Greetz GHad Original: Ehm... the line
replaces all gaps in the array where the removed element has been with null. This might be dangerous, because the elements are removed, but the length of the array remains the same! If you want to avoid this, use a new Array as parameter for toArray(). If you don`t want to use removeAll, a Set would be an alternative:
Gives:
Where as the current accepted answer from Chris Yester Young outputs:
with the code
without any null values left behind. Greetz GHad |
||||||||||
|
|
|
It depends on what you mean by "remove"? An array is a fixed size construct - you can't change the number of elements in it. So you can either a) create a new, shorter, array without the elements you don't want or b) assign the entries you don't want to something that indicates their 'empty' status; usually null if you are not working with primitives. In the first case create a List from the array, remove the elements, and create a new array from the list. If performance is important iterate over the array assigning any elements that shouldn't be removed to a list, and then create a new array from the list. In the second case simply go through and assign null to the array entries. |
||
|
|
|
|
Thanks a lot!! very helpful |
||
|
|
|
|
i dont know...i have been trying this for a while for my java assignment///but couldnt find any soln/....anybody please post the solution |
||
|
|
|
|
Insert new object: This command adds a new object to an array of objects. The added data is stored in a file. The file is a text file that is comma delimited in which each entry (object) is found on a separate line. |
||
|
|
|
|
Assign null to the array locations. |
||
|