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

I have the following for loop:

for(String s : someString.split("\\s+")){
   //do something
}

Does java execute the split() method each time the loop iterates, or does it do it only once and keep a temp array to iterate on?

share|improve this question

4 Answers

up vote 16 down vote accepted

It only does it once, and uses that array and interates through it.

Edit: from Mat This is the reference

share|improve this answer
6  
Exactly what happens is detailed in the JLS enhanced for statement doc – Mat Jun 2 '11 at 15:02
@Mat, you mind if I edit my answer with your link? – RMT Jun 2 '11 at 15:03
1  
Go right ahead, I put it there just for that :-) – Mat Jun 2 '11 at 15:05

It stores the array in a temporary variable before using it.

share|improve this answer

No the split is executed once on the string and after that the loop iterate over the result

share|improve this answer

The split method is only called once. Think of the structure (also known as a for-each) as follows:

  • The second argument is evaluated and kept for the duration of the loop.
  • If the argument gives an Iterable or is an array (special case), a check is then made to see if the type of the first argument corresponds with the elements that are returned.
  • The process enters the loop and executes the code inside the scope and exits when there are no more elements left.

More information can be had here: http://www.leepoint.net/notes-java/flow/loops/foreach.html

P.S: This works with Java 5 minimum.

share|improve this answer
1  
Isn't that second step usually done at compile time? – trutheality Jun 2 '11 at 15:15
Also if by "an array is iterable" you mean that an array implements the Iterable interface, that's wrong. – trutheality Jun 2 '11 at 15:16
Perhaps. It's difficult to say as an IDE like Eclipse does a form of compiling when it underlines issues. – James Poulson Jun 2 '11 at 15:18
@trutheality: What I mean is that the array would behave as an Iterable after unboxing. I'll admit this is an assumption though and I'd be interested to hear if Java actually handles this differently. download.oracle.com/javase/1.5.0/docs/guide/language/… – James Poulson Jun 2 '11 at 15:21
"The Expression must either have type Iterable or else it must be of an array type, or a compile-time error occurs." - From the JLS reference posted by Mat – Michael Myers Jun 2 '11 at 15:34
show 3 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.