gpt4 book ai didi

java - 将整数转换为 boolean 值选择位数

转载 作者:行者123 更新时间:2023-12-02 09:58:27 24 4
gpt4 key购买 nike

我正在尝试将整数值转换为 boolean 值。我想用预先确定的 X 位来表示我的 boolean 值。

例如:

1 = 01 (If i want to represent it with 2 bits)

1 = 0001 (If i want to represent it with 4 bits)

我不知道如何强加位数。这也是我转换 1 时的结果:

1 = 1

2 = 10

这是我的方法,称为 DecimalToBinary。谢谢

StringBuilder result = new StringBuilder();
if(no==0){
for(int i=0; i<variableArray.size(); i++){
result.append("0");
}
}else{
while(no>0){
result.append(no%2);
no = no/2;
}
}
return Integer.valueOf(result.reverse().toString());

no 是我的方法的整数参数

最佳答案

您可以使用Integer.toBinaryString() 。检查结果的长度并在其前面添加所需数量的零。

关于java - 将整数转换为 boolean 值选择位数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55810307/

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