Skip to content

Instantly share code, notes, and snippets.

@nkchauhan003
Created July 29, 2022 17:52
package com.cb;
import java.util.Map;
public class Impl {
public static void main(String[] args) {
//Immutable
Map map = Map.of(1, "Sunday", 2, "Monday", 3, "Tuesday");
System.out.println(map); // {1=Sunday, 2=Monday, 3=Tuesday}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment