There is some way to instantiate an object n number of times, that is, the instance is
Objeto nombre_var = new Objeto();
that is, if you want to instantiate an undetermined number of objects within a for cycle
for(i=0;i<5;i++){
Objeto x+'i' = new Objeto();
Something as it is done with the indices of the vectors. Thank you very much