Hi !
(A & 0xFF)
. What does this mean?
I have to optimize a program, here is the code :
ret += ((long) data[index + i] & 0xFF) << ((nb - 1 - i) * 8);
An image is stored in the array data... whenI remove & 0xFF, It works well so I guess I can remove it unless you think I should not