In Java, can a java.util.HashMap<Key, Value>
overflow silently, so content is deleted without me receiving an exception or some other notification? If yes, how do I make it noticeable?
I meant can it exceed the physical hardware memory, not the reserved memory for the HashMap
object.