Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How would you find the maximum long value supported on your system within an application in Objective-C? That is, how do we determine what the largest value is that long can represent?

share|improve this question

2 Answers

up vote 12 down vote accepted

As in C: include limits.h, and look at LONG_MAX or INT_MAX.

share|improve this answer
This was it. But for objective-c, no needed to add the include file. This SO question answered it all: stackoverflow.com/questions/2107544/… – Justin Galzic Dec 8 '10 at 15:59
public class Main 
{
    public void displayMinAndMaxValuesOfLong() 
    {

        System.out.println(Long.MIN_VALUE);
        System.out.println(Long.MAX_VALUE);
    }
    public static void main(String[] args) 
    {
        new Main().displayMinAndMaxValuesOfLong();
    }
}
share|improve this answer
I think the tag reads 'objective-c' :-) – claptrap Dec 8 '10 at 8:36
1  
-1 not only is this the wrong language but I had to correct the formatting of the code. – JeremyP Dec 8 '10 at 9:24
It's also just plain weird code. Why would you instantiate Main in main() and call an instance method for this? – Chuck Dec 8 '10 at 9:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.