Objective-c:foundation Framework-Common class-nsnumber

Source: Internet
Author: User

Nsarray, Nsdictionary is not available to store the basic data types in C language. NSNumber can wrap a basic data type into an object, which indirectly saves the base data type into a collection class such as Nsarray, Nsdictionary, and so on. Use the following:

#import<Foundation/Foundation.h>voidNumber () {//wraps 10 of the int type into a NSNumber objectNSNumber *number = [NSNumber numberwithint:Ten]; NSLog (@"number=%@", number); Nsmutablearray*array =[Nsmutablearray array]; //adding values to the array[Array Addobject:number]; //removed or a NSNumber object, does not support automatic unpacking (that is, does not automatically convert to int type)NSNumber *number1 =[Array lastobject]; //Convert nsnumber to int type    intnum =[Number1 intvalue]; NSLog (@"num=%i", num);}

Objective-c:foundation Framework-Common class-nsnumber

Related Article

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.