Java:如何用短值替换长值的最后 16 位
我有一个长的和一个短的 我希望短的位覆盖长的低 16 位。
例如(为了可读性分为 16 位块):
> long = 0xffff 0xffff 0xffff 0xffff
> short= 0x1234
>
> output = (long)0xffff 0xffff 0xffff 0x1234
I have a long and a short
I want the bits from the short to overwrite the low order 16 bits of the long.
Ex (broken into 16bit chunks for readability):
> long = 0xffff 0xffff 0xffff 0xffff
> short= 0x1234
>
> output = (long)0xffff 0xffff 0xffff 0x1234
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请注意,您必须在此处将
short
值与0xFFFFL
进行 AND,否则符号扩展将导致代码中断(结果中的所有高位都将被设置,无论long
中的原始值如何)如果short
code> 大于或等于0x8000
。Note that you must AND the
short
value with0xFFFFL
here, otherwise sign extension will cause the code to break (all high bits in the result will be set, regardless of their original value in thelong
) if theshort
is greater than or equal to0x8000
.