gpt4 book ai didi

java - 位级操作,从short值中获取位

转载 作者:搜寻专家 更新时间:2023-11-01 01:15:40 26 4
gpt4 key购买 nike

我正在尝试从此输入 5 获得以下结果 00000000000000101

这是我的代码,它没有意义:

public static int get16Bits(int x)
{
System.out.println((x & 0xffff) - ((x & 0x8000) << 1));
return (x & 0xffff) - ((x & 0x8000) << 1);

}

如何获取 16bits 的整数值?

最佳答案

试着稍微改变一下你的返回声明:

    public static String get16Bits(int x)
{
return (String.format("%016d", Integer.parseInt(Integer.toBinaryString(x))));

}

这应该对你有帮助。

关于java - 位级操作,从short值中获取位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46365127/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com