예를들어


1)@@@@@@@@@@@@@


bool b = false;


while(true){

b = true;

}


2)@@@@@@@@@@@@@


bool b = false;


while(true){

if(b == false) b = true;

}