Tagged Questions
13
votes
11answers
75k views
How do I remove objects from an Array in java?
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 ...