public static int getComputerMoveAI(int left)
{
Integer returnValue = 0;
Integer place = nimMachine.size() - left;
returnValue = nimMachine.get(place).get(((int)Math.random()*place)+1);
plays[place] = returnValue;
return intValue(returnValue);
}
我希望我的程序返回一個int值,以便main可以使用該值,但我不明白如何使發生。我知道這是不正確的,但我把我想要將整數更改爲int。我必須使用Integer作爲我的數組列表。我不明白如何讓我的程序從一個整數返回int值
你想'returnValue.intValue()'。 – APerson 2014-12-05 04:41:23
可能重複[如何將Integer轉換爲int?](http://stackoverflow.com/questions/3571352/how-to-convert-integer-to-int) – durron597 2015-04-01 15:35:23