在我的代码中,我一直得到这样的错误:操作符!=对于参数类型boolean和int是未定义的,我不知道该怎么做来修复它。该错误出现在eclipse内部以及启动时
如有帮助,我们将不胜感激:)谢谢!
private boolean[] ctexture = new boolean[16];
public boolean[] flipTopBottom = new boolean[16];
this.ctexture[id] = connectedTexture;
@SideOnly(Side.CLIENT)
public Icon getIcon(int par1, int par2)
{
if ((par1 <= 1) && (this.flipTopBottom[(par2 & 0xF)] != 0) //The error occurs here// && ((this.icons[(par2 & 0xF)] instanceof IconConnectedTexture))) {
return new IconConnectedTextureFlipped((IconConnectedTexture)this.icons[(par2 & 0xF)]);
}
return this.icons[(par2 & 0xF)];
}
@SideOnly(Side.CLIENT)
public void registerIcons(IconRegister par1IconRegister)
{
for (int i = 0; i < 16; i++) {
if ((this.texture[i] != null) && (this.texture[i] != "")) {
if (this.ctexture[i] != 0) { //It also occurs here
this.icons[i] = new IconConnectedTexture(par1IconRegister, this.texture[i]);
} else {
this.icons[i] = par1IconRegister.registerIcon(this.texture[i]);
}
}
在某些语言中,boolean类型与int密切相关,因此将一个boolean与0进行比较是有意义的。在Java,它们是完全不同的类型。boolean只能与其他boolean表达式进行比较。
若要测试布尔值是否为false,请使用!this.ctexture[i]
。对于true,只需使用布尔值。
您有:
private boolean[] ctexture = new boolean[16];
那么你就会:
if(this.ctexture[i] != 0)
↑ ↑
boolean int
在Java中,你不能这样做,0是int
,this.ctexture[i]
是boolean
。
您可能应该这样做:
if(this.ctexture[i]) //if true
您在其他地方也有无效的比较,请同时修复它们
我的Java代码没有什么问题。我正在使用下面的代码,但Eclipse总是提示相同的消息“参数类型Test1,int的运算符未定义”。但是如果我将代码更改为“System.out.println(test1”“100);”或“System.out.println”(“100 test1”)或“System.out.println(100”“test1);”,没有问题。 有人对此有想法吗?请帮忙。多谢
下面的方法中不断出现错误“The operator-is undefined for The argument type double[],double”,我不知道为什么或如何修复它。 特别是在以下行:“如果((targetX-x)
我这里有这个代码: 但我得到了错误信息: 接线员 为什么呢?如何修复代码? 以下是代码的文本形式:
我是新来的处理,我有这个问题。我一直收到下面代码中粗体部分的错误消息。我的语法错了吗?
问题内容: 我得到这个错误 问题答案: 具有无效的返回类型。更改方法的返回类型以返回值
问题内容: 我只是试图制作一个简单的类,让我弄清楚文件的长度: 我遇到了一个问题 我得到错误: 未为参数类型定义运算符!= int,null 有什么想法为什么会阻止这种情况吗? 问题答案: Java中的原始类型不能为。如果要检查0,请执行。