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.

I want to store two ints in a long (instead of having to create a new Point object every time).

Currently, I tried this. It's not working, but I don't know what is wrong with it:

// x and y are ints
long l = x;
l = (l << 32) | y;

And I'm getting the int values like so:

x = (int) l >> 32;
y = (int) l & 0xffffffff;
share|improve this question

2 Answers

up vote 8 down vote accepted

y is getting sign-extended in the first snippet, which would overwrite x with -1 whenever y < 0.

In the second snippet, the cast to int is done before the shift, so x actually gets the value of y.

long l = (((long)x) << 32) | (y & 0xffffffffL);
int x = (int)(l >> 32);
int y = (int)l;
share|improve this answer
Ah, that makes sense. One question I have is whether it matters if you bitmask using the long 0xffffffffL or the int 0xffffffff. – LanguagesNamedAfterCofee Oct 7 '12 at 21:26
@LanguagesNamedAfterCofee yes it matters, if you mask with 0xffffffff (without the L) then it's just an int, so the & is a no-op and y still gets sign extended. – harold Oct 7 '12 at 21:28
Okay, thanks for the explanation! – LanguagesNamedAfterCofee Oct 7 '12 at 21:29

Just a guess... but a long is signed, this is giving the unexpected behaviour...

share|improve this answer

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.