Objective-C 嵌套 if-else 语句

在 Objective-C 编程中,是可以使用嵌套 if-else 语句的,这意味着您可以在一个 ifelse-if 语句中使用另一个 ifelse-if 语句。


语法

嵌套 if 语句的语法如下:

  1. if( boolean_expression 1) {
  2. /* 当 boolean 表达式 1 为 true 时,执行这里的代码 */
  3. if(boolean_expression 2) {
  4. /* 当 boolean 表达式 1 与 2 都为 true 时,执行这里的代码 */
  5. }
  6. }

您可以用与嵌套 if 语句类似的方式嵌套 else if…else


实例

  1. #import <Foundation/Foundation.h>
  2. int main () {
  3. /* local variable definition */
  4. int a = 100;
  5. int b = 200;
  6. /* check the boolean condition */
  7. if( a == 100 ) {
  8. /* if condition is true then check the following */
  9. if( b == 200 ) {
  10. /* if condition is true then print the following */
  11. NSLog(@"Value of a is 100 and b is 200\n" );
  12. }
  13. }
  14. NSLog(@"Exact value of a is : %d\n", a );
  15. NSLog(@"Exact value of b is : %d\n", b );
  16. return 0;
  17. }

结果如下:

  1. 2022-07-07 22:08:19.984 demo[18141] Value of a is 100 and b is 200
  2. 2022-07-07 22:08:19.985 demo[18141] Exact value of a is : 100
  3. 2022-07-07 22:08:19.985 demo[18141] Exact value of b is : 200

分类导航