当我在 PuTTY 中而不是在 Eclipse 中运行我的程序时出现错误。我在网上环顾四周,试图找到我的问题的答案,但也没能找到。
错误:
dataSummary.java.227: inconvertible types
found: java.lang.Object
required: int
int contractIDDisplay = (int) int intr.next();
^
1 error
这是代码:
Iterator itr = set.iterator();
while (itr.hasNext())
{ //while
int contractIDDisplay = (int) itr.next();
if (contractIDDisplay == 1)
{
System.out.printf("%d, %d, %d, %d",contractIDDisplay, monthCounter1, firstDate1, lastDate1);
file.format(contractIDDisplay + ", " + monthCounter1 + ", " + firstDate1 + ", " + lastDate1 + ", ");
}
在这些行之前和之后有更多代码,但是我认为这些行并不重要。如果他们是,请告诉我。“集合”是一个集合。
为什么 Eclipse 能够运行我的代码而 PuTTY 不能?如果无法修复,有没有办法解决这个问题?