Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Ok, so I'm tyring to iterate through an ArrayList and remove a specefic element. However, I am having some trouble using the For-Each like structure. When I run the following code:

ArrayList<String> arr = new ArrayList<String>();
//... fill with some values (doesn't really matter)

for(String t : arr)
{
  t = " some other value "; //hoping this would change the actual array
}

for(String t : arr)
{
  System.out.println(t); //however, I still get the same array here
}

My question in, how can I make 't' a pointer to 'arr' so that I am able to change the values in a for-each loop? I know I could loop through the ArrayList using a different structure, but this one looks so clean and readable, it would just be nice to be able to make 't' a pointer.

All comments are appreciated! Even if you say I should just suck it up and use a different construct.

share|improve this question
3  
this isn't about foreach loops, this is a more basic misunderstanding of how java works – skaffman Nov 30 '09 at 23:27
2  
Even though an ArrayList is backed by an Array: ArrayList != Array. Don't confuse yourself by mixing the terms (like in your comments) – Andreas_D Nov 30 '09 at 23:37
1  

11 Answers

up vote 13 down vote accepted

I think the best approach may be to use a for loop.

    ArrayList<String> arr = new ArrayList<String>();

    for (int i = 0; i < arr.size(); i++) {

        String t = arr.get(i);

        if (// your condition is met) {
            arr.set(i, "your new value");
        }
    }
share|improve this answer
Does it work? No ConcurrentModificationException this way? – Andreas_D Nov 30 '09 at 23:35
2  
I think you'll only get that exception if you add/remove items from the array while iterating – Don Nov 30 '09 at 23:37
Yes, sure, you're not using the iterator anymore, just a normal for loop. Didn't pay attention ;) – Andreas_D Nov 30 '09 at 23:46
I guess it is better to put arr.size() in a local variable instead of calculating it every time over and over again. – Alfred Dec 1 '09 at 0:41
1  
The JIT compiler will most likely hoist the size() invocation out of the loop. – Steve Kuo Dec 1 '09 at 1:05
show 2 more comments

The problem is that you're trying to change the loop-scoped reference t to let it point to a new String instance. This ain't going to work. It does not refer the actual entry in the arraylist. You need to change the actual value of the reference. If String was mutable and provided a fictive set() method for that, you could in theory do

for (String t : arr) {
    t.set("some other value");
}

or so, but that's not possible as it is immutable. Better get a handle of the entrypoint in the array itself using the normal for loop:

for (int i = 0; i < arr.size(); i++) {
    arr.set(i, "some other value");
}

If you insist in using the enhanced for loop, then you need to replace String by StringBuilder, which is mutable:

for (StringBuilder t : arr) {
     t.delete(0, t.length()).append("some other value");
}

Remember, Java is pass-by-value, not pass-by-reference.

share|improve this answer
Even worse - his first sentence tells us that he wants to remove something (makes sense, seems to be the actual assignement for the example.buab-user-group ;) ) but his code shows a replacement... this is going to be a loooooong night :) – Andreas_D Nov 30 '09 at 23:53
Wtf, he wanted to remove it. There you need the holy Iterator for. – BalusC Dec 1 '09 at 0:10

For-each doesn't give you an index pointer, so you just can't use it to change an immutable value.

Either use a for-loop with an index or use a mutable type (like StringBuffer, not String)

share|improve this answer

An array of objects (like strings) in Java is a contiguous block containing an ordered series of references. So, when you have an array of 4 strings, what you really have is 4 references stored IN the array, and 4 string objects that are outside of the array but are referenced by its 4 elements.

What the for-each construct in Java does is create a local variable and, for each iteration, copy into that local variable the reference from the array cell that corresponds to that iteration. When you set the loop variable (t = " some other value") you are putting a reference to a new string, "some other value", into the local variable t, not into the array.

The contrasts with some other languages (like Perl) where the loop variable acts like an alias to the array/list element itself.

share|improve this answer
+1 for an amazing explanation! – Hassan Sep 10 '11 at 22:21

Your code is re-written by the compiler as something like this:

ArrayList<String> arr = new ArrayList<String>();
//... fill with some values (doesn't really matter)

for (final Iterator <String> i = arr.iterator(); i.hasNext();) {
    String t;

    t = i.next();
    t = " some other value "; // just changes where t is pointing
}

To do what you want you would have to write the for loop like this:

for (final ListIterator<String> i = arr.iterator(); i.hasNext();) {
     final String t;

     t = i.next();
     i.set("some other value");
}

Iterator does not have the set method, only ListIterator does.

share|improve this answer

Basically you want to remove the String t from the list arr. Just do a arr.remove(t) and you could be done. But you can't do it while iterating over the same list. You'll get an Exception if you try to modify the list this way.

You have two options:

  1. clone your list, iterate through the clone and remove the 'specific' String from the original list
  2. create a list for delete candidates, add all 'specific' Strings to that list and, after iterating through the original list, iterate through the wastebin and remove everything you've collected here from the original list.

Option 1 is the easist, the clone can be made like:

List<String> clone = new ArrayList<String>(arr);
share|improve this answer

You seem to misunderstand how objects/references work in Java, which is pretty fundamental to using the language effectively. However, this code here should do what you want (apologies for the lack of explanation):

ArrayList<String> arr = new ArrayList<String>();
//... fill with some values (doesn't really matter)

for(int i = 0; i < arr.size(); i++)
{
  arr.set(i, " some other value "); // change the contents of the array
}

for(String t : arr)
{
  System.out.println(t); 
}
share|improve this answer

I believe, this is not related to immutable or mutable.

 t = " some other value "; //hoping this would change the actual array

t does not hold the reference to actual object. Java copies the value from arraylist and puts that value into t so array list value does not get affect.

HTH

share|improve this answer
that is actually more along the lines of what I was thinking originally. I was wondering if I could get a reference to the object, but since it's immutable I guess it doesn't matter anyways. – John Dec 1 '09 at 1:53

This has been answered well. Still here is my suggestion. The var t inside loop is only visible there. It will not be seen outside the loop. You could do t.set() if it was not String.

share|improve this answer

Use a StringBuffer rather than plain strings. This way the string within is mutable.

share|improve this answer

Strings are immutable. If you had a mutable type like StringBuilder/Buffer, you could change the string in your iteration. You do have references, remember.

share|improve this answer
12  
This has nothing to do with String or StringBuilder or immutability, this is about how object references work in Java. – skaffman Nov 30 '09 at 23:32
3  
this answer is 100% wrong... – TofuBeer Nov 30 '09 at 23:59
2  
...what? Iterating through an ArrayList<StringBuilder> will certainly let you change the object inline, as per the OP's defined specification. He said he wanted style, not exact pointer functionality. You're all stooges. – Stefan Kendall Dec 1 '09 at 0:52
1  
People, the immutability point is because of OPs comment "//hoping this would change the actual array". So this answer isn't any worse than the highly voted MB's answer that replaces object in the array element's position with a new object. – Murali VP Dec 1 '09 at 1:13
1  
@Tofu: Did you even read the OP's question? He asked about changing VALUE, not pointer reference. There are plenty of situations in which a variable is placed in a list which is then modified en masse. It's not "potentially dangerous." It's "functions as designed." – Stefan Kendall Dec 1 '09 at 2:40
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.