What is the maximum value of NSInteger?

34,797

Solution 1

The maximum value of an NSInteger is NSIntegerMax.

Solution 2

The maximum value for an NSInteger is NSIntegerMax

(from Foundation Constants Reference)

Solution 3

For 32-bit & 64 bit, there are two conventions: a)ILP32 b)LP64

The 32-bit runtime uses a convention called ILP32, in which integers, long integers, and pointers are 32-bit quantities. The 64-bit runtime uses the LP64 convention; integers are 32-bit quantities, and long integers and pointers are 64-bit quantities. These conventions match the ABI for apps running on OS X (and similarly, the Cocoa Touch conventions match the data types used in Cocoa), making it easy to write interoperable code between the two operating systems.

Table 1-1 all of the integer types commonly used in Objective-C code. Each entry includes the size of the data type and its expected alignment in memory. The highlighted table entries indicate places where the LP64 convention differs from the ILP32 convention. These size differences indicate places where your code’s behavior changes when compiled for the 64-bit runtime. The compiler defines the LP64 macro when compiling for the 64-bit runtime.

enter image description here

for 64 bit max range for NSInteger is : LONG_MAX : 9223372036854775807

Solution 4

Took me a little while for me to realise why I was getting a different value from NSIntegerMax when using NSUInteger!!

And the maximum for a NSUInteger is NSUIntegerMax

(also from http://developer.apple.com/library/ios/#documentation/cocoa/reference/foundation/Miscellaneous/Foundation_Constants/Reference/reference.html)

Share:
34,797
David
Author by

David

Updated on June 12, 2020

Comments

  • David
    David almost 4 years

    I need to store the maximum value of an NSInteger into an NSInteger? What is the correct syntax to do it?

    Thanks.