Skip to content

Instantly share code, notes, and snippets.

@ch8n
Created October 12, 2020 13:24
Show Gist options
  • Save ch8n/da429123261caf699a7602be831f0104 to your computer and use it in GitHub Desktop.
Save ch8n/da429123261caf699a7602be831f0104 to your computer and use it in GitHub Desktop.
hashMap kotlin java kotlin
fun <K, V> hashMapOf(): HashMap<K, V> = HashMap<K, V>()
// hashmapOf directly create HashMap object default constructor
// Java HashMap default constructor create HashMap with
// * inital capacity 16 and * LoadFactor 0.75
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment