Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

what does this mean &0xffff?

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
in this plugin i have to write. pixels which is a interger in an array are followed by &0xffff

pixels&0xffff

it can not be applied to double numbers?
if anyone could help it would be much appreciated.
i can be emailed at robsroom@hotmail.com
 
That expression evaluates to the bitwise AND of the value contained in the variable 'pixels' and the value 0xffff ( hex notation for decimal 65535).

& is the Bitwise AND operator in Java.

Good luck
-pete
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top