Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Java

Idiom #298 Copy a map

Create the map y by cloning the map x.

y is a shallow copy, not a deep copy.

import java.util.Map;
Map<K, V> y = x;
var y = Map.of(x);

New implementation...