131132133134135136137138139140
Random random = new Random(); random.nextInt(100); for (int i = 0; i < 100; i++) { KeyObject keyObject = new KeyObject(i + ""); ValueObject valueObject = new ValueObject(keyObject, i + " data "); storage.add(valueObject); } }
54555657585960616263
Random random = new Random(); random.nextInt(100); for (int i = 0; i < 100; i++) { KeyObject keyObject = new KeyObject(i + ""); ValueObject valueObject = new ValueObject(keyObject, i + " data "); storage.add(valueObject); } return storage; }
121122123124125126127128129130
73747576777879808182