Variable names for declared Objects
Well, I don't know how to formalize the topic correctly. I'll try to explain my question.
Is it possible in Java to do something like this:
for (int i = 0; i < 10; i++){
Object"myObject"+i =new Object();
}
So that I have 10 Objects:
myObject0
myObject1
.
.
.
myObject9
greetz
Thinkpositiv

