首页 > 网站 > 建站经验 > 正文

iOS中nil、Nil、_NULL、NSNull详解

2019-11-02 14:40:35
字体:
来源:转载
供稿:网友

   这篇文章主要介绍了iOS中nil、Nil、NULL、NSNull详解的相关资料,需要的朋友可以参考下

  ObjC 里面的几个空值符号经常会差点把我搞死,这些基础的东西一点要弄清楚才行,以提高码农的基本素质。

  nil

  nil 是 ObjC 对象的字

齐鲁电影网[www.aikan.tv/special/qiludianyingwang/]
面空值,对应 id 类型的对象,或者使用 @interface 声明的 ObjC 对象。

  例如:

  ?

1 2 3 4 NSString *someString = nil; NSURL *someURL = nil; id someObject = nil; if (anotherObject == nil) // do something

  定义:

  ?

1 2 3 4 5 6 7 8 9 10 11 12 // objc.h #ifndef nil # if __has_feature(cxx_nullptr) # define nil nullptr # else # define nil __DARWIN_NULL # endif #endif   // __DARWIN_NULL in _types.h   #define __DARWIN_NULL ((void *)0)

  Nil

  Nil 是 ObjC 类类型的书面空值,对应 Class 类型对象。

  例如:

  Class someClass = Nil;

  Class anotherClass = [NSString class];

  定义声明和 nil 是差不多的,值相同:

  ?

1 2 3 4 5 6 7 8 // objc.h #ifndef Nil # if __has_feature(cxx_nullptr) # define Nil nullptr # else # define Nil __DARWIN_NULL # endif #endif

  NULL

  NULL 是任意的 C 指针空值。

  例如:

  ?

1 2 3 int *pointerToInt = NULL; char *pointerToChar = NULL; struct TreeNode *rootNode = NULL;

  定义:

  ?

1 2 // in stddef.h #define NULL ((void*)0)

  NSNull

  NSNull 是一个代表空值的类,是一个 ObjC 对象。实际上它只有一个单例方法:+[NSNull null],一般用于表示集合中值为空的对象。

  例子说明:

  // 因为 nil 被用来用为集合结束的标志,所以 nil 不能存储在 Foundation 集合里。

  NSArray *array = [NSArray arrayWithObjects:@"one", @"two", nil];

  // 错误的使用

  NSMutableDictionary *dict = [NSMutableDictionary dictionary];

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表