In my code I have a pretty big loop and I need to create a new variable at the end of each iteration (integers). Is this possible? I read about a ScriptEngineManager class, but I'm not sure if this will be able to help. I suppose I could create a bunch of integers equal to 0, but I'm not exactly sure how many times I will need to create a new variable (it depends on the conditions of the loop). Hopefully this makes sense. Thanks in advance.
|
Use an array. In Javascript, place |
|||||
|
Unfortunately, it doesn't. In Java it makes no sense to create variables on the fly. It is extremely difficult to do, and once you have done it they are extremely difficult to use. (By contrast, it is easy to do in Javascript ...) However, this just means that you need to do what you are trying to in a different way. For instance, the following does a computation in a loop and then saves the results in an (existing)
Or, if you want to bind each of the results to a distinct name, you could do something like this:
|
|||
|
|
|
Following is the way that i have implemented and helped me to fix my solution easily without much hurdles. // Creating the array List
Iterating the loop and adding the objects into the arraylist with the index. //Retrieving the object at run time with the help of the index
|
|||
|
|
ScriptEngineAPI. Still, the question is very vague. We need to see the relevant code. – Matthew Flaschen Nov 10 '10 at 1:36