예제 #1
0
        private MutableObjectIntMap <string> InitMap(int nbrOfEntries)
        {
            MutableObjectIntMap <string> toReturn = new ObjectIntHashMap <string>();

            while (nbrOfEntries-- > 0)
            {
                toReturn.put("key" + nbrOfEntries, nbrOfEntries);
            }
            return(toReturn);
        }