private static AtomicInteger counter = new AtomicInteger();
public static void main(String... args) throws InterruptedException { SortedMap<Integer, Integer> map = new TreeMap<>();
final ExecutorService e = Executors.newFixedThreadPool(10); for (int i = 0; i < 10; i++) { e.execute(() -> map.put(counter.incrementAndGet(), (int) (Math.random() * 100))); } e.shutdown(); e.awaitTermination(1000, TimeUnit.SECONDS); System.out.println(map.size());//should be 10 }