如何将负整数转换为补码二进制形式? (爪哇)
我需要将数字(正数和负数)转换为二进制格式 - 例如,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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.