Please edit your post and wrap your code with code tags:
[code]
**YOUR CODE GOES HERE**
[/code]
to get highlighting and preserve formatting.
Please post a
complete program that will compile and execute for testing.
Make sure the code is properly formatted with indentations to make it readable.
my question is what is that exactly
for (;
It looks like a for statement. See the tutorial:
https://docs.oracle.com/javase/tutor...bolts/for.html
The for statement has 3 parts separated by ;s
for (initialization;
termination;
increment)
Any part can be empty. The posted code only has the termination part.
The statement executes until the termination part is false.