Java:如何用短值替换长值的最后 16 位

发布于 2024-09-15 17:04:07 字数 202 浏览 12 评论 0原文

我有一个长的和一个短的 我希望短的位覆盖长的低 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一个人练习一个人 2024-09-22 17:04:07
static long foobar(long aLong, short aShort) {
    return aLong & 0xFFFFFFFFFFFF0000L | aShort & 0xFFFFL;
}

请注意,您必须在此处将 short 值与 0xFFFFL 进行 AND,否则符号扩展将导致代码中断(结果中的所有高位都将被设置,无论long中的原始值如何)如果short code> 大于或等于 0x8000

static long foobar(long aLong, short aShort) {
    return aLong & 0xFFFFFFFFFFFF0000L | aShort & 0xFFFFL;
}

Note that you must AND the short value with 0xFFFFL 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 the long) if the short is greater than or equal to 0x8000.

↙温凉少女 2024-09-22 17:04:07
long l = ...;
short s = ...;
long n = (l & ~0xFFFF) | (s & 0xFFFFL);
long l = ...;
short s = ...;
long n = (l & ~0xFFFF) | (s & 0xFFFFL);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文