我收到就行了以下錯誤在那裏說:ht.keySet()
:類型不匹配:不能從元素類型對象轉換爲int
類型不匹配:不能從元素類型對象轉換爲int
ht
是LinkedHashMap
。
for (int key : ht.keySet())
{
if(ht.get(key).size() == 0)
{
System.out.println("There is no errors in " + key) ;
}
else
{
System.out.println("ERROR: there are unexpected errors in " + key);
}
}
我不是確定這是Java中有效的_for_語句。 [Java] for「loop」(http://download.oracle.com/javase/tutorial/java/nutsandbolts/for.html) – m0skit0
@ m0ski0:從來沒有聽說過'for-each'? http://download.oracle.com/javase/1.5.0/docs/guide/language/foreach.html –