鍍金池/ 教程/ C/ Objective-C if...else 語(yǔ)句
Objective-C 多態(tài)性
Objective-C 預(yù)處理器
Objective-C for循環(huán)
Objective-C 開(kāi)發(fā)環(huán)境(安裝配置)
Obj-C Foundation/基礎(chǔ)框架
Objective-C 指針運(yùn)算
Objective-C 循環(huán)
Objective-C 錯(cuò)誤處理
Objective-C while循環(huán)
Objective-C if語(yǔ)句
Objective-C do...while循環(huán)
Objective-C教程
Objective-C 嵌套switch語(yǔ)句
Objective-C 函數(shù)按值調(diào)用
Objective-C 常量
Objective-C 運(yùn)算符
Objective-C 數(shù)據(jù)類型
Objective-C 邏輯運(yùn)算符
Objective-C 數(shù)組作為函數(shù)參數(shù)傳遞
Objective-C struct/結(jié)構(gòu)
Objective-C 嵌套循環(huán)
Objective-C 函數(shù)引用調(diào)用
Objective-C 日志處理
Objective-C 數(shù)據(jù)存儲(chǔ)
Objective-C 教程首頁(yè)
Objective-C 擴(kuò)展
Objective-C 異常處理
Objective-C 類型轉(zhuǎn)換
Objective-C 嵌套 if 語(yǔ)句
Objective-C typedef
Objective-C 決策
Objective-C 指針的數(shù)組
Objective-C Protocols/協(xié)議
Objective-C 日期和時(shí)間
Objective-C 指針
Objective-C 內(nèi)存管理
命令行參數(shù)
Objective-C NSString/字符串
Objective-C 動(dòng)態(tài)綁定
Objective-C 復(fù)合對(duì)象
Objective-C Arrays/數(shù)組
Objective-C 位運(yùn)算符
Objective-C 指向指針的指針
Objective-C 從函數(shù)返回?cái)?shù)組
Objective-C Posing/冒充
Objective-C Categories/類別
Objective-C 文件處理
Objective-C 賦值運(yùn)算符
Objective-C 函數(shù)返回指針
Objective-C if...else 語(yǔ)句
Objective-C switch語(yǔ)句
Objective-C URL加載系統(tǒng)
Objective-C 算術(shù)運(yùn)算符
Objective-C Numbers/數(shù)字
Objective-C語(yǔ)言程序結(jié)構(gòu)
Objective-C 快速枚舉
Objective-C 基本語(yǔ)法
Objective-C 類&對(duì)象
Objective-C 變量
Objective-C 關(guān)系運(yùn)算符
Objective-C 塊
Objective-C break語(yǔ)句
Objective-C continue語(yǔ)句
Objective-C 語(yǔ)言概述
Objective C 文本和字符串
Objective-C 函數(shù)
Objective-C 傳遞函數(shù)的指針
Objective-C 數(shù)組的指針
Objective-C 多維數(shù)組
Objective-C 繼承
Objective-C 數(shù)據(jù)封裝

Objective-C if...else 語(yǔ)句

if 語(yǔ)句后面可以通過(guò)一個(gè)可選的else語(yǔ)句,布爾表達(dá)式為假時(shí)執(zhí)行。

語(yǔ)法:

在Objective-C編程語(yǔ)言的if... else語(yǔ)句的語(yǔ)法是:

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

如果布爾表達(dá)式的值為true,那么將要執(zhí)行的if block代碼塊,else block 代碼塊將被執(zhí)行。

Objective-C語(yǔ)言的編程語(yǔ)言假設(shè)為真,任何非零和非空值,如果它是零或者為null,那么它被假定為false。

流程圖:

Objective-C if...else statement

例如:

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

上面的代碼編譯和執(zhí)行時(shí),它會(huì)產(chǎn)生以下結(jié)果:

2013-09-07 22:04:10.199 demo[3537] a is not less than 20
2013-09-07 22:04:10.200 demo[3537] value of a is : 100

if...else if...else 語(yǔ)句

if語(yǔ)句后面可以跟一個(gè)可選的 else if...else 語(yǔ)句,這是非常有用的,如果使用單... else if語(yǔ)句來(lái)測(cè)試各種條件。 

當(dāng)使用 if , else if , else 語(yǔ)句時(shí),有幾點(diǎn)要牢記:

  • 一個(gè)if可以有零個(gè)或一個(gè)else,它必須跟在else if之后。

  • 一個(gè)if 可以有零或許多else if,他們必須出現(xiàn)在else之前。

  • else if 一旦成功,否則,剩余的else if'將不會(huì)被測(cè)試執(zhí)行。

語(yǔ)法:

if...else if...else 語(yǔ)句語(yǔ)法在Objective-C編程語(yǔ)言是:

if(boolean_expression 1)
{
   /* Executes when the boolean expression 1 is true */
}
else if( boolean_expression 2)
{
   /* Executes when the boolean expression 2 is true */
}
else if( boolean_expression 3)
{
   /* Executes when the boolean expression 3 is true */
}
else 
{
   /* executes when the none of the above condition is true */
}

例如:

#import <Foundation/Foundation.h>
 
int main ()
{
   /* local variable definition */
   int a = 100;
 
   /* check the boolean condition */
   if( a == 10 )
   {
       /* if condition is true then print the following */
       NSLog(@"Value of a is 10
" );
   }
   else if( a == 20 )
   {
       /* if else if condition is true */
       NSLog(@"Value of a is 20
" );
   }
   else if( a == 30 )
   {
       /* if else if condition is true  */
       NSLog(@"Value of a is 30
" );
   }
   else
   {
       /* if none of the conditions is true */
       NSLog(@"None of the values is matching
" );
   }
   NSLog(@"Exact value of a is: %d
", a );
 
   return 0;
}

上面的代碼編譯和執(zhí)行時(shí),它會(huì)產(chǎn)生以下結(jié)果:

2013-09-07 22:05:34.168 demo[8465] None of the values is matching
2013-09-07 22:05:34.168 demo[8465] Exact value of a is: 100