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?
|
|
|
It only does it once, and uses that array and interates through it. Edit: from Mat This is the reference |
|||||||||||
|
|
No the split is executed once on the string and after that the loop iterate over the result |
|||
|
|
|
The split method is only called once. Think of the structure (also known as a for-each) as follows:
More information can be had here: http://www.leepoint.net/notes-java/flow/loops/foreach.html P.S: This works with Java 5 minimum. |
|||||||||||||
|