Object Oriented Programming
Vector is synchronized
String: equalsIgnoreCase
đź’ˇ Differences
public class MapDemo {
public static void main(String[] args) {
// Should use put keyword in map
Map<String, String> m = new HashMap<String, String>();
m.put("Sai", "asdfg");
m.put("krish", "zxcvb");
m.put("qwerty", "lkjh");
m.put("qwerty", "lkj");
System.out.println(m);
}
}
Duplicate key, overides the existing
Here:
Key | Value |
---|---|
qwerty | lkj |
Happy Coding : @Sai Kishore