What's the difference between NSNumber and NSInteger?

IphoneObjective CNsnumberPrimitive TypesNsinteger

Iphone Problem Overview


What's the difference between NSNumber and NSInteger? Are there more primitives like these that I should know about? Is there one for floats?

Iphone Solutions


Solution 1 - Iphone

NSNumber is a class, not a primitive, and is used when you need to put raw numbers into dictionaries, arrays, or otherwise encapsulate them. NSInteger, NSUInteger, CGFloat, etc are simple types and correspond (on 32-bt systems like the iPhone) to int, unsigned int and float.

As a general rule, if you need to store a number somewhere, use NSNumber. If you're doing calculations, loops, etc, use NSInteger, NSUInteger or CGFloat.

You can wrap an NSInteger into an NSNumber:

NSNumber *aNumber = [NSNumber numberWithInteger:21];

... and get it back:

NSInteger anInteger = [aNumber integerValue];

You can find out more info here: http://iosdevelopertips.com/cocoa/nsnumber-and-nsinteger.html

Solution 2 - Iphone

The existing answers are useful; adding to them:

Yes, NSUInteger gives twice the range among positive integers as NSInteger, but I think another critical reason to choose between the two is simply to distinguish among cases where negative values simply do not make sense.

Example: the return value of NSArray's count method is an NSUInteger, which makes sense since we cannot have an array with a negative number of elements. When the coder knows it's unsigned, he/she has more freedom to perform operations that might be unreliable in the signed case, including bitwise operations such as shifting. This blog post talks more about signed vs unsigned.

My guess about CGFloat vs NSFloat (which doesn't exist): It might be the case that the designers of the NeXTStep-named code elements simply didn't need to specify too many float values, outside of time intervals. So they gave NSTimeInterval, which is a floating-point type, but that is clearly intended for use with time intervals. And, frankly, it's great to have that type because you know it's always meant to be in seconds without having to deal with a struct. When you move into the graphics world (where Core Graphics lives), suddenly floats are all around you, hovering in the air (haha). So it makes sense to introduce a CGFloat there. This paragraph is all "educated speculation."

Also, just to be clear about why you might use NSInteger etc instead of primitive types: Because this way it's easier to write portable code that takes full advantage of the machine architecture. For example, a CGFloat uses 32 bits on some machines and 64 bits on others, depending largely on how much of an efficiency gap there is on those machines for those sizes. In some cases, there's no real speedup for using 32 bits vs 64 bits, so you might as well use 64 bits. If you've declared things as CGFloat's, you suddenly get that extra precision "for free" when you recompile.

And, as iKenndac has pointed out, NSNumber is a wrapper class for all of these (and other primitive or quasi-primitive types like the BOOL) which enables you to include it in your NSArrays and NSDictionarys, archive them more easily, and do other things that NSObjects can do.

Solution 3 - Iphone

NSInteger is just like a traditional int in C. It's a typedef. There are others like NSUInteger, CGFloat, etc. that all are synonyms for primitive types.

NSNumber is useful when you need to stick a number into an NSArray or NSDictionary. The standard practice is to use these collections versus rolling your own; the drawback is that they can only contain Objective-C objects.

NSNumber essentially wraps an int (or float, etc) into an Obj-C object (similar to C#/Java's concept of 'boxing' a primitive type) that can be added to an array:

NSArray * myArray = [[NSArray alloc] init];
[myArray addObject:3]; // invalid, will not compile.
[myArray [NSNumber numberWithInt:3]]; // ok

For performance reasons, if you can, use primitive types (like int, float, int[]). However, sometimes you cannot avoid NSArray/NSNumber, such as when you are reading or writing entries into a .plist file.

Solution 4 - Iphone

NSNumber is generally used for storing variables, NSUInteger is used for arithmetic

you can change a NSNumber to a NSUInteger by doing this:

NSNumber *variable = @1;
NSUInteger variableInt = [variable unsignedIntegerValue];

It has been said before but as a general rule of thumb, variables that need to be defined with * are Objective C classes, whereas variables that do not need a * are C primitives.

Solution 5 - Iphone

As said by others before, NSNumber is an NSObject subclass. It is not a C primitive (like int, unsigned int, float, double, etc.) NSInteger, CGFloat, NSUInteger are simple typedefs over the C primitives.

The need for NSNumber arises from the need to use numbers as parameters to APIs that require Objects. Example is, when you want to store a number in an NSArray, In Core-Data, or in an NSDictionary.

Are there more primitives like these that I should know about? Well, NSNumber is not a primitive type, and it wraps around all kinds of numbers (floats, integral types, booleans and so on). You should also learn about NSValue, which is the base for NSNumber.

Is there one for floats? There is no "NS" typedef for float, but NSNumber can wrap around any float number:

NSNumber *myPi = [NSNumber numberWithFloat:3.1415926];

Or you could use the CoreGraphics primitive type CGFloat.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionmk12View Question on Stackoverflow
Solution 1 - IphoneiKenndacView Answer on Stackoverflow
Solution 2 - IphoneTylerView Answer on Stackoverflow
Solution 3 - IphoneJasonView Answer on Stackoverflow
Solution 4 - IphoneedenView Answer on Stackoverflow
Solution 5 - IphoneMotti ShneorView Answer on Stackoverflow