استفاده از دستور Continue در اندروید
کلمه ی کلیدی continue باعث می شود که بدنه ی حلقه شکسته شود و شرط حلقه دوباره بررسی شود و حلقه دوباره اجرا شود. به مثال زیر توجه کنید:
int x = 0;
int tooBig = 10;
int tooBigToPrint = 5;
while(true){
x++; // I am going to get mighty big!
if(x == tooBig){
break;
} // No you're not haha.
// code reaches here only until x = 10
if(x >= tooBigToPrint){
// No more printing but keep looping
continue;
}
// code reaches here only until x = 5
// Print out x
}
ص 163
- نوشته شده توسط احسان عباسی
- بازدید: 3624