Online Java Compiler By
JavaTpoint.com
import java.util.*; public class CollectionsUnmodifiableMapExample3 { public static void main(String[] args) { Map
map = new HashMap<>(); map.put(1, 1001); map.put(2, 1002); map.put(3, 1003); map.put(4, 1004); map.put(5, 1005); System.out.println("Unmodifiable map: " + map); Map
map2 = Collections.unmodifiableMap(map); map.remove(4, 1004); System.out.print("Unmodifiable map after remove(4, 1004): "+map2); } }
Output