有人可以帮我解决这个错误吗?
当我删除()我有100个错误...
无法回复我自己的帖子需要等待7小时...
我仍然会收到错误,有人可以通过teamvieuwer帮助我吗?
long TimeTNL = ()(Skills.getXPToNextLevel("Mining") * 3600000.0D / XPH);
^
1错误
this.runTime = System.currentTimeMillis();
timeRan = this.runTime - this.startTime;
int XPH = (int)(this.gainedXP * 3600000.0D / timeRan);
long TimeTNL = ()(Skills.getXPToNextLevel("Mining") * 3600000.0D / XPH);
if (XPH > 0) {
this.TNLhours = (TimeTNL / 3600000L);
TimeTNL -= this.TNLhours * 3600000L;
this.TNLminutes = (TimeTNL / 60000L);
TimeTNL -= this.TNLminutes * 60000L;
this.TNLseconds = (TimeTNL / 1000L);
TimeTNL -= this.TNLseconds * 1000L;
}
答案 0 :(得分:3)
这不是Javascript,这是Java! Java到Javascript就像电椅的高脚椅!
只需删除()
- 为什么那里有人? :)
答案 1 :(得分:1)
在变量声明中的赋值运算符之后删除()
,它们(括号)是不必要的。