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

Objective-C if語句

if語句由一個布爾表達式後跟一個或多個語句。

語法:

在Objective-C編程語言的if語句的語法是:

if(boolean_expression)
{
   /* statement(s) will execute if the boolean expression is true */
}

如果布爾表達式的計算結果為true,那麼裡麵的代碼塊,如果語句會被執行。如果布爾表達式計算為false,那麼結束後的第一套代碼的if語句(後右大括號)將被執行。

Objective-C語言的編程語言假設為true,任何非零和非空值,如果它是零或者為null,那麼它被假定為false。

流程圖:

Objective-C if statement

例如:

#import <Foundation/Foundation.h>
 
int main ()
{
   /* local variable definition */
   int a = 10;
 
   /* check the boolean condition using if statement */
   if( a < 20 )
   {
       /* if condition is true then print the following */
       NSLog(@"a is less than 20
" );
   }
   NSLog(@"value of a is : %d
", a);
 
   return 0;
}

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

2013-09-07 22:07:00.845 demo[13573] a is less than 20
2013-09-07 22:07:00.845 demo[13573] value of a is : 10