devxlogo

Exiting a Nested Loop

Exiting a Nested Loop

Sometimes, you need to exit a nested loop early, and the break; statement will only let you exit one level of a loop. Use a flag to indicate if the loop should be exited.

 bool abort = false;for(int i = 0; (i < 100) && (! abort); i++){   for(int j = 0; (j < 100) && (! abort); j++)   {      for(int k = 0; (k < 100) && (! abort); k++)      {         if(k == 15)         {             abort = true;             break;         }      }//end k loop.   }//end j loop.}//end i loop.if (abort){        // handle premature loop exit here}else{        // handle normal loop exit here}
See also  How HealthStream Learning Center Supports Healthcare Education and Compliance
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist