What is the maximum value of NSInteger?
Asked Answered
M

4

35

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

Thanks.

Mauldin answered 25/1, 2011 at 23:28 Comment(0)
P
92

The maximum value of an NSInteger is NSIntegerMax.

Praseodymium answered 25/1, 2011 at 23:31 Comment(5)
@Mark: on current implementations. Future implementations could conceivably choose a different value, though one hopes not.Informal
@Cfr: Thanks for the link, but that number is not right. On 32-bit systems, NSInteger cannot represent 4294967295 (the number you gave is the maximum value of an unsigned 32-bit integer), and on 64-bit systems it can go a lot higher than that.Praseodymium
Oh sorry, actually I was searching for NSUIntegerMax/ULONG_MAX and found this answer. NSUIntegerMax is 4294967295 while NSIntegerMax is 2147483647 on 32-bit systems. Sometimes the value itself is useful, for example, when you want to understand whether it is possible to overflow the ID typed as integer.Courland
here is nice list of max/min valuesCourland
If someone was looking for the min, it's, as you'd expect, NSIntegerMinStallings
G
13

The maximum value for an NSInteger is NSIntegerMax

(from Foundation Constants Reference)

Geese answered 25/1, 2011 at 23:31 Comment(0)
O
4

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

Otila answered 11/7, 2017 at 17:17 Comment(0)
T
2

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)

Tucket answered 19/7, 2013 at 13:33 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.