What is the main difference between int, NSInteger and NSUInteger in Objective-C?
Which one is better to use in an application and why?
|
What is the main difference between Which one is better to use in an application and why? |
||||
|
In such cases you might right click and go to definition:
|
|||
|
|
|
The point is to abstract types and their associates sized from the hardware in a manner that we don't have to worry what size an int is now how big a pointer is on any particular hardware. "C" is bad at this, only stating that a long is at lease as big as an int, that an int is the "natural" integer size of the hardware (whatever that means), that an int is at least as long as a short--a big mess. This seemed like a good idea at the time coming from Fortran but did not age well. One could use the POSIX defines, things like uint32_t, int16_t, etc but this too does not address how big a pointer needs to be on any particular hardware. So, if Apple defines the return type to be an NSUInteger you just use that and you don't need to know if it is 16, 32 or 64 bits in size for your particular hardware. (I picked those values out-of-the-air just for an example). As you can see in @Bastian the actual size depends on hardware. The documentation answers the "letter of the question" but does not provide an understanding of "why"? |
|||||||
|
|
There is nothing as such 'int' datatype. NSInteger is used to describe integer of long type. Syntax is 'typedef long NSInteger'. On the other hand, NSUInteger is used to describe Unsigned Integer. Syntax is 'typedef unsigned long NSUInteger'. |
|||||||
|
NSInt. – BoltClock♦ Oct 2 '11 at 12:48