Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

generate objects with for loop java

// 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));
}
Source by coderanch.com #
 
PREVIOUS NEXT
Tagged: #generate #objects #loop #java
ADD COMMENT
Topic
Name
6+6 =