MyObject objects[] = new MyObject[6];
for (MyObject o: objects) {
o = new MyObject();
}
MyObject objects[] = new MyObject[6];
for(int i = 0; i < objects.length; i++) {
objects[i] = new MyObject();
}
ArrayList<String> namesList = new ArrayList<String>(Arrays.asList( "alex", "brian", "charles") );
for(int i = 0; i < namesList.size(); i++)
{
System.out.println(namesList.get(i));
}
// Using the range of int i we assign new objects to the List using i as the index
List<Objects> objects = new ArrayList<>();
for (int i = 0; i < 10; i++)
{
// Generate or get variables
objects.add(i, new Object(variable, variable1));
}