位置:首頁 > 高級語言 > Objective-C教學 > Objective-C continue語句

Objective-C continue語句

continue語句在Objective-C編程語言的工作原理有點像break語句。不是強製終止,而是繼續下一個迭代的循環發生,跳過任何代碼。

for循環中,continue語句導致循環條件測試和增量部分來執行。對於while 和 do...while循環,continue語句使程序控製通過條件測試。

語法:

Objective-C中的continue語句的語法如下:

continue;

流程圖:

Objective-C continue statement

例如:

#import <Foundation/Foundation.h>
 
int main ()
{
   /* local variable definition */
   int a = 10;

   /* do loop execution */
   do
   {
      if( a == 15)
      {
         /* skip the iteration */
         a = a + 1;
         continue;
      }
      NSLog(@"value of a: %d
", a);
      a++;
     
   }while( a < 20 );
 
   return 0;
}

上麵的代碼編譯和執行時,它會產生以下結果:

2013-09-07 22:20:35.647 demo[29998] value of a: 10
2013-09-07 22:20:35.647 demo[29998] value of a: 11
2013-09-07 22:20:35.647 demo[29998] value of a: 12
2013-09-07 22:20:35.647 demo[29998] value of a: 13
2013-09-07 22:20:35.647 demo[29998] value of a: 14
2013-09-07 22:20:35.647 demo[29998] value of a: 16
2013-09-07 22:20:35.647 demo[29998] value of a: 17
2013-09-07 22:20:35.647 demo[29998] value of a: 18
2013-09-07 22:20:35.647 demo[29998] value of a: 19