0
For(;;) What does it mean?
for(;;)
4 Respostas
+ 7
for(;;)
first index :
no value has been defined
second index :
No condition. so return true
Look at second index It has "return true" inside
So Yes That loop will create infinite loop like as he said.This loop like as
for(i=0;i==0;) //for(;true;)
//Tip : for(i=9;i--;){System.out.print(i)}
//System.out.print will be worked reversly
+ 1
it will create an infinite loop.
+ 1
Thank you
+ 1
you're welcome.