Created
October 31, 2022 21:21
-
-
Save manuelGitHub1/0303802f3533ffff67d558fa6ff0b944 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Map<String, Integer> map = new HashMap<>(); | |
map.put("Key1", 12); | |
map.compute("Key1", ( key, val ) -> (val == null) ? 1 : val + 1); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment