Код: Выделить всё
/**
* Returns the size of the simulation world.
* Used for documentation ONLY
* Should not have representation exposure
*
* @return The size of the simulation world.
*/
public int getWorldSize()
{
int clone = this.worldSize;
return clone;
}
В прошлом я использовал .clone() или Arrays.copyOf(), но оба из них не предназначены для функций типа int.
Подробнее здесь: https://stackoverflow.com/questions/784 ... int-method