如何将负整数转换为补码二进制形式? (爪哇)

发布于 2024-11-03 03:18:54 字数 154 浏览 0 评论 0原文

我需要将数字(正数和负数)转换为二进制格式 - 例如,2 转换为“00000010”,-2 转换为“11111110”。我不需要超过 12 位左右,所以如果字符串比这个长,我可以剪掉前导符号位。看起来 Integer.toBinaryString() 会处理正数,但是有没有一个可以处理负数呢?

I need to convert numbers, positive and negative, into binary format - so, 2 into "00000010", and -2 into "11111110", for example. I don't need more than 12 bits or so, so if the string is longer than that I can just trim off the leading sign bits. It seems like Integer.toBinaryString() will do positive numbers, but is there one that can do negatives?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

流绪微梦 2024-11-10 03:18:54

Integer.toBinaryString 也适用于负数。 :-) 例如,Integer.toBinaryString(-2) 返回 11111111111111111111111111111110。

如果您采用最右边的 12 个字符,则根据需要您将获得底部 12 位。

Integer.toBinaryString works for negatives too. :-) For example, Integer.toBinaryString(-2) returns 11111111111111111111111111111110.

If you take the rightmost 12 characters, you have the bottom 12 bits, as required.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文