iOS nil null nil nsnull difference

Source: Internet
Author: User

The difference between nil, nil, NULL, Nsnull

NIL: A null pointer to an object

Nil: A null pointer to a class

NULL: null pointer to other types (such as base type, C type)

NSNull: Usually represents a null value in a collection

Example:

Nsurl *url = nil;

Class class = Nil;

int *pointerint = NULL;

Nsarray *array = [Nsarray arraywithobjects:[[nsobject alloc] init], [NSNull null], [[NSObject alloc] init], [[NSObject All OC] init], nil];

Why is the empty object in the above array not directly with nil?

If nil is used, it becomes nsarray *array = [Nsarray arraywithobjects:[[nsobject alloc] init], nil, [[NSObject alloc] init], [[NSObject A Lloc] [init], nil];, then the array will end in the second position. printing [array Count] will display 1 instead of 4.

So [NSNull null] can usually be used as a placeholder for an array, thus the count of the array is calculated accurately

iOS nil null nil nsnull difference

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.