zoukankan      html  css  js  c++  java
  • iOS中nil、Nil、NULL、NSNull详解

    nil

    • nil 是 ObjC 对象的字面空值,对应 id 类型的对象,或者使用 @interface 声明的 ObjC 对象。
    • 例如:
      NSString *someString = nil;
      NSURL *someURL = nil;
      id someObject = nil;
       
      if (anotherObject == nil) // do something
    • 定义:
      // 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 是差不多的,值相同:
      // objc.h
      #ifndef Nil
      # if __has_feature(cxx_nullptr)
      #   define Nil nullptr
      # else
      #   define Nil __DARWIN_NULL
      # endif
      #endif

    NULL

    • NULL 是任意的 C 指针空值。
    • 例如:
      int *pointerToInt = NULL;
      char *pointerToChar = NULL;
      struct TreeNode *rootNode = NULL;
    • 定义:
      // 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];
      [dict setObject:nil forKey:@"someKey"];
       
      // 正确的使用
      NSMutableDictionary *dict = [NSMutableDictionary dictionary];
      [dict setObject:[NSNull null] forKey:@"someKey"];
    • 定义:
      /*  NSNull.h
          Copyright (c) 1994-2012, Apple Inc. All rights reserved.
      */
       
      #import <Foundation/NSObject.h>
       
      @interface NSNull : NSObject <NSCopying, NSSecureCoding>
       
      + (NSNull *)null;
       
      @end
      

       

      最后再总结下:

        nil:指向一个对象的空指针

        Nil:指向一个类的空指针

            NULL:指向其他类型(如:基本类型、C类型)的空指针

            NSNull:通常表示集合中的空值

        

  • 相关阅读:
    python 合并 Excel 单元格
    python 设置 Excel 表格的行高和列宽
    Python 用 openpyxl 模块统计 Excel 表格中的数据,以字典形式写入 py 文件
    python 打印字母阶梯和金字塔
    python 用 openpyxl 读取 Excel 表格中指定的行或列
    Python 的 filter() 函数
    Python 的 map() 函数
    python 之 range() 函数
    python 的 reduce() 函数
    python 之 lambda 函数
  • 原文地址:https://www.cnblogs.com/xiaohuzi1990/p/4386984.html
Copyright © 2011-2022 走看看