Java's Collections.checked*() api gives us type-safe views to underlying collections. But the checks happen at runtime and throw a runtime exception which can be costly for performance. The same type checking can be enforced at compile time by giving a specific type to those collections by using generic collections. So are there situations where Collections.checked*() scores over generic collections with their types specified?
|
|
The javadoc explains it well:
|
|||
|
|
|
The main difference is that the compile-time check can easily be circumvented, both accidentally and consciously. The compiler will warn you, if that happens, but warnings are easily ignored and the problem might happen in some library somewhere. The type-information provided by generics is reliable, but only if all the code involved compiles without any warnings related to generics: no unchecked casts, no raw types. Using |
|||
|
|
|
When using an old library with unchecked types in a new 1.5+ project. |
|||
|
|
Collectons.checkedXxxxx() performs runtime checks are provides extra safety. The compiler can be avoided by using type erasure, however the checked collections should always check the type is correct. I doubt the performance difference is enough to worry about. It is likely to be about 10 ns or less. |
|||
|
|