Home PC Games Linux Windows Database Network Programming Server Mobile  
           
  Home \ Programming \ The difference between Objective-C language nil, Nil, NULL, NSNull     - In-depth understanding of capture Node.js garbage collection and memory leaks (Programming)

- C # DateTime structure common method (Programming)

- Zabbix installation under Linux (Server)

- Ubuntu deploying Solr (4.4) to Tomcat (7.0.53) (Server)

- Ubuntu 12.04 installation DHCP Server (Server)

- Cacti installation deployment under CentOS 6.6 (Server)

- Modular JavaScript (Programming)

- MySQL 5.6 use GTIDs build the master database (Database)

- Ubuntu 15.10 install the latest Arduino IDE 1.6.7 (Linux)

- Mac OS X Server installation and application (Linux)

- Analysis of common mistakes when compiling MySQL installation (Database)

- Python configuration tortuous road of third-party libraries Numpy and matplotlib (Programming)

- The principle Httpclient4.4 (HttpClient Interface) (Programming)

- Increase ssh security service under Linux (Linux)

- Linux uses the SMTP proxy to send mail (Linux)

- JBoss7 configuration - Supports IPv4 and IPv6 dual-stack environment (Server)

- Build RubyMine + Ruby On Rails + MySQL development environment under Windows (Server)

- OpenSSH version smooth upgrade method (Linux)

- Linux environment variable settings methods and differences (Linux)

- Memcached distributed caching (Server)

 
         
  The difference between Objective-C language nil, Nil, NULL, NSNull
     
  Add Date : 2017-01-08      
         
         
         
  Nil: null pointer pointing to objects in Objective-C language, which is the definition of value (id) 0.

Nil: point to Objective-C language class (Class) null pointer, defined value (Class) 0.

NULL: point C language standard null pointer, which is defined value (void *) 0.

NSNull: a collection of objects in Objective-C language, the objects that represent null values, defined value [NSNull null]. [NSNull null] is an object that can not be used with nil in the case.

Because NSArray and NSDictionary in nil has a special meaning (denote the end of the list), so you can not put nil value in the collection. As "nothing" to do need to store the value of a representation, you can use NSNull class. Example: [NSMutableArrayObj addObject: [NSNull null]];

If obj is nil: [obj message] returns NO, instead NSException.

If obj is NSNull: [obj message] will throw an exception NSException.
     
         
         
         
  More:      
 
- Windows7 / 8 / 8.1 hard drive to install Ubuntu 14.04 dual system (Linux)
- Ubuntu is not in the sudoers file problem solving (Linux)
- Linux systems for entry-learning - Install Go language in Linux (Linux)
- Oracle for Oracle GoldenGate to achieve a one-way synchronization DDL operations (Database)
- Upgrading Oracle 11.2.0.1.0 to 11.2.0.3.0 (Database)
- Do not enter password login ssh (Server)
- Wildcards and special symbols usage comments under Linux (Linux)
- Several configuration changes illustrate deployment of PHP (Server)
- Alternative methods of intrusion bundled executable file new thinking (Linux)
- Detailed reference Oracle 11g Partition (Database)
- Try the command ip, ifconfig is obsolete under Linux (Linux)
- ElasticSearch - Basic Concepts (Server)
- C language sorting instance (select, bubble, insert, binary, fast) (Programming)
- To install Oracle Database Details and FAQ Summary under CentOS (Database)
- Java inner classes (Programming)
- Use HugePages optimize memory performance (Database)
- OpenSUSE 13.1 OpenSUSE 12.3 and how to install Cinnamon 2.2 Desktop (Linux)
- MySQL binary packages install for RedHat Linux Enterprise 6.4 (Database)
- df show disk space usage (Linux)
- Use install_updates upgrade GAMIT / GLOBK (Linux)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.