Re: need an unsigned int in java, so...



googmeister@xxxxxxxxx writes:

> J. David Boyd wrote:
>> what's the workaround?
>>

Thanks all, for the tips.

I got the ops I wanted by, (and this might be stupidly redundant, but)...

I used a long (call it LL),

LL <<= 32;
LL >>>= 32;
LL &= 0x00000000FFFFFFFF;


This worked fine.

Dave
.