Vertaling van "a HashMap" in Frans
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
If you end up with an object that produces one hashCode() value when it is put() into a HashMap, and another during a get(), you won't be able to retrieve the objects.
Si on a un objet dont la méthode hashCode() renvoie une valeur lors d'un put() dans un HashMap, et une autre durant un appel à get(), on sera incapable de retrouver cet objet.
In main(), a HashMap is filled with Groundhogs and their associated Predictions.
Dans main(), un HashMap est rempli avec des Groundhogs et leurs Predictions associées.
Each field for each API command is documented as having a 'type', either as a string, an integer, a boolean, a date, or a hashmap (associative array).
Chaque champ pour chaque commande API est documentée comme ayant un «type», soit comme un string, un integer, un boolean, une date, ou un hashmap (tableau associatif).
The design of a HashMap is focused on rapid access, while a TreeMap keeps its keys in sorted order, and thus is not as fast as a HashMap.
La conception d'un HashMap est focalisée sur les temps d'accès, tandis qu'un TreeMap garde ses clefs ordonnées, et n'est donc pas aussi rapide qu'un HashMap.
However, using a HashMap implies a memory overhead because the structure must be large enough to avoid hash collisions.
Cependant, utiliser une HashMap introduit un surcoût mémoire (la taille de la structure doit être suffisamment grande pour éviter les collisions).
And since the right side is not yet implemented, create a stubbed implementation of the SPI inside your Hexagon (e.g. an in memory database using a HashMap).
Et comme le côté droit n'est pas encore implémenté, créez une implémentation du SPI dans votre hexagone (par exemple une base de données en mémoire utilisant une HashMap).
Of course, you would probably only do this if, for some reason, the behavior of a HashMap was unacceptable, since HashMap is designed to rapidly find things.
Bien sûr, on ne ferait ceci que si, pour une raison ou une autre, le comportement d'un HashMap ne convenait pas, puisqu'un HashMap est conçu justement pour retrouver rapidement des objets.
Complexity-wise, searching for an item stored in a HashMap is done in constant time on average, and with a logarithmic complexity for SparseArray and ArrayMap.
En termes de complexité, la recherche d'un élément stocké dans une HashMap se fait avec une complexité constante en moyenne (logarithmique pour les structures SparseArray et ArrayMap).
A HashMap is a structure allowing one to store (key, value) items.
Une HashMap est une structure permettant de stocker des éléments (clé, valeur).
A HashMap takes the hashCode() of the object and uses it to quickly hunt for the key.