Simple question,
I have 4 variables child1, child2, child3, child4. I want to intialize the variables in a loop as such:
while(temp.getPointer() != null){
temp = temp.getPointer();
child+i = temp;
There will not always be a child to fill every spot which is the reason I am doing it this way. Thanks in advance