MCPcopy Index your code
hub / github.com/BruceEckel/OnJava8-Examples / main

Method main

collectiontopics/MapOps.java:49–56  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

47 "map.isEmpty(): " + map.isEmpty());
48 }
49 public static void main(String[] args) {
50 test(new HashMap<>());
51 test(new TreeMap<>());
52 test(new LinkedHashMap<>());
53 test(new IdentityHashMap<>());
54 test(new ConcurrentHashMap<>());
55 test(new WeakHashMap<>());
56 }
57}
58/* Output: (First 11 Lines)
59HashMap

Callers

nothing calls this directly

Calls 1

testMethod · 0.95

Tested by

no test coverage detected