We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86d96ba commit 3c615deCopy full SHA for 3c615de
src/main/java/java_collections/HashMap.java renamed to src/main/java/java_collections/HashMapDemo.java
@@ -2,13 +2,13 @@
2
3
import java.util.Map;
4
5
-public class HashMap {
+public class HashMapDemo {
6
private static final int NUMBER_OF_MAP_ENTRIES = 2;
7
8
public static void main(String... args) {
9
System.out.println("Program started.");
10
- HashMap hashMap = new HashMap();
11
- hashMap.understandHashMapInternalWorkings();
+ HashMapDemo hashMapDemo = new HashMapDemo();
+ hashMapDemo.understandHashMapInternalWorkings();
12
System.out.println("Program finished.");
13
}
14
0 commit comments