Cette page n'est pas encore disponible en français, sa traduction est en cours. Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.
Metadata
ID:java-best-practices/replace-hashtable-with-map
Language: Java
Severity: Warning
Category: Best Practices
Description
If your application does not require thread safety, it is recommended to use the modern java.util.Map interface instead of java.util.Hashtable.
Map offers efficient implementations like HashMap, which offer greater flexibility and faster execution. If thread safety is needed, you can opt for ConcurrentHashMap, which maintains thread safety while still adhering to modern coding practices associated with Map.
Non-Compliant Code Examples
publicclassFoo{voidbar(){Hashtablehashtable1=newHashtable();// consider using java.util.Map insteadHashtable<String,Integer>hashtable2=newHashtable<>();}}