gpt4 book ai didi

java - toBinaryString 类型错误

转载 作者:行者123 更新时间:2023-11-29 08:05:33 24 4
gpt4 key购买 nike

编译以下内容时出现类型不兼容错误:

public class E10_Bitwise {
public static void main(String[] args) {
Bit b = new Bit();
int x = 87;
int y = 170;
x = Integer.toBinaryString(x);
y = Integer.toBinaryString(y);
b.combiner(x, y);
}
}

出于某种原因,它认为括号内的 x 和 y 是字符串。我是在犯错误还是这里发生了其他事情?

E10_Bitwise.java:22 error: incompatible types
x = Integer.toBinaryString(x)
^
required: int
found: string

感谢您的帮助。

最佳答案

toBinaryString() 的返回类型是字符串。

尝试,

String xStr=Integer.toBinaryString(x);

关于java - toBinaryString 类型错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11553468/

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