Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
5answers
350 views

Why does the local variable of an enhanced for loop have to be local?

According to the Java Language Specification, § 14.14.2, the variable of an enhanced for loop must be local to the loop. In other words, this compiles: for (State state : State.values()) { // do ...
5
votes
4answers
2k views

Strange behavior in Javascript enhanced for…in loop

I am making a Javascript game with the canvas tag, and I am using an enhanced for loop to update the player positions. In brief: var actors = new Array(); var player = new Actor(0, 0, img); ...
4
votes
5answers
1k views

Java enhanced enhanced for loop

Currently (as of Java 6), using Java's enhanced for-loop I do not know of any way to directly access the iterator index short of reverting to the old indexed for-loop or using an outside counter. Are ...
4
votes
5answers
831 views

Why doesn't this for-each loop work?

In this code, why isn't my array initialised as I want it to? Is the for-each loop not designed to do that, or am I just not using it correctly? int[] array = new int[5]; //initialise array -> ...
3
votes
1answer
621 views

Java Enhanced For Loop

How would I write the following for loop using an enhanced for loop> int [] info = {1,2,3,4,5,6,7,8,9,10}; int i; for (i = 0; i < info.length; i++) { if ((i+1) % 10 ...
2
votes
3answers
150 views

java.util.ConcurrentModificationException

Note: I am aware of the Iterator#remove() method. In the following code sample, I don't understand why the List.remove in main method throws ConcurrentModificationException but not in the remove ...
2
votes
2answers
911 views

Enhanced for loop in 2D Array - JavaScript

I created the following 2D array in Javascript // Create basic linear array var ImgArray = new Array(4); // Do the 2D array for each or the linear array slots for (i=0; i < 4 ; i++) { ...
2
votes
1answer
153 views

Enhanced for loop problem

Why is my enhanced loop not working? Vector<String> v = new Vector<String>(); v.add("one"); v.add("two"); v.add("three"); for(String str : v){ ...
1
vote
2answers
105 views

Incompatible types in “For Statement” during java recomplile

All, 1st off I am NOT a java programmer - I have learned what I know in the past two days just trying to recomplile a class file. I have reviewed every post here that has 'incompatible types' but ...
1
vote
4answers
184 views

Enhanced for (or 'for each') loop iterating to element it just removed - throws error

could not find anything on this, wondering if anyone knew about this or a possible workaround. I am using JDOM and working with an xml schema. I have created a List of which are just xml tags. The ...
1
vote
4answers
176 views

Reversable Loops

I have been experimenting with a game that I'm trying to make. I found I had two methods that were identical except for the for loop, which was simply the reverse of the former. I tried to make it ...
1
vote
3answers
275 views

What does “:” mean in this Java statement?

for (Season time : Season.values() ) system.out.println (time+ "\t" + time.getSpan()); I see an example for enumeration using :. What does this mean?
0
votes
3answers
91 views

How can I initialize an array with an enhanced for-loop?

I was optimizing an application and wanted to change my for loops to enhanced loops: From: for (int m = 1;m < MAX_BEREN;m++) { Wasberen[m] = new Wasbeer(); ...
0
votes
3answers
92 views

Java Var-args and enhanced for loop compiler error

Please explain why the following code snippet fails to compile: public class ScjpTest{ static void go(int... i){ System.out.println("In 1"); for (int x : i){ System.out.println(x); ...
0
votes
2answers
208 views

Null pointer exception in enhanced for loop over Vector

How could this code throw a null pointer exception? for (Foo f : Vector<Foo> v) { f.doStuff(); // this line throws a NullPointerException } Even if the Vector is empty, shouldn't the ...
0
votes
4answers
158 views

Getting ConcurrentException when traversing a list

I am in a very peculiar state. I have a list something like below :- List<String> list = new ArrayList<String>(); list.add("a"); list.add("b"); Now when i do multiple type of ...
0
votes
2answers
404 views

use Enumerations in for-each statements without RAM limitation?

Hi I have about 10 million values and getting Enumeration in enhanced-for loop, but It blasts my RAM. Is there any way to get Iteration rather than Enumeration. I am trying to to find an alternate ...
0
votes
2answers
279 views

Android:What to use instead of cursor

In my application I use cursor to get information from SQLite data base like this: Cursor contacts = dataBase.select("SELECT _idContact FROM Contacts"); if (contacts.getCount() > 0) { if ...
0
votes
2answers
158 views

Java or Groovy equivalent of python for loop + izip

Does anyone know the java or groovy equivalent of a python for loop using izip? python example: for item_one, item_two in izip(list_one, list_two): I'd like to do the same in java or groovy ...
0
votes
3answers
359 views

iterating over map and array simultaneously in a for loop

I am having some trouble creating a for loop within a constructor to iterate over a map and an array at the same time. Here, it is indicated that this cannot be done with an enhanced for loop. I have ...