Examples with "HashSets" and their translation in Engels
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.
Si les valeurs tendent à se regrouper, alors les HashMaps et les HashSets seront plus chargés dans certaines parties et donc moins rapides que ce qu'ils pourraient être avec une fonction de hachage mieux répartie.
If the values tend to cluster, then the HashMap or HashSet will be more heavily loaded in some areas and will not be as fast as it could be with an evenly distributed hashing function.
Les HashSets fournissent des temps d'accès optimaux, alors que les TreeSets gardent leurs éléments ordonnés.
Andere resultaten
'JavaScript consultable HashSet' peut utiliser toute valeur comme une clé.
'JavaScript Searchable Hashset' can use any value as a key.
Les HashMap et HashSet immutables sont plus rapides, et leur empreinte mémoire plus faible.
Immutable HashMap and HashSet are faster, and has lower memory footprints.
Notez comment nous avons initialisé les variables d'instance avec une instance de HashSet.
Notice how the instance variable was initialized with an instance of HashSet.
De même, un Set peut être implémenté soit sous la forme d'un TreeSet ou d'un HashSet.
Set can be implemented as either a TreeSet or a HashSet.
Les HashMap et les HashSet proposent des constructeurs qui permettent de spécifier la capacité initiale.
HashMap and HashSet: constructors to set the initial capacity. d.
Ainsi, dans l'exemple précédent, on peut spécifier le HashSet<>();}
Une faiblesse commune de HashSet est qu'ils ne sont pas ordonnés - et en tant que telle - ne peut être énumérée (foreach).
A common weakness of Hashsets is that they are unordered - and as such - can not be enumerated (foreach).
Support du module PHP/Java bridge pour l'utilisation d'objets tels que les HashSet ou les HashMap Actualités A propos
Is the PHP/Java bridge module, for the use of objects such as HashSet or HashMap supported?
Quand vous écrirez un programme nécessitant un Set, choisissez un HashSet par défaut, et changez pour un TreeSet s'il est plus important de disposer d'un Set constamment trié.
When you're writing a program that needs a Set, you should choose HashSet by default, and change to TreeSet when it's more important to have a constantly sorted set.
Quand nous fabriquons l'instance persistante - en appelant persist(), par exemple - Hibernate remplacera réellement le HashSet par une instance d'une implémentation propre à Hibernate de Set.
When you make the instance persistent, by calling persist(), Hibernate will actually replace the HashSet with an instance of Hibernate's own implementation of Set.
Par exemple, 100 M de clés en HashSet ont besoin de plus de 500 MB, alors que PalDB réserve environ 80 MB.
For example, a 100M keys hashset needs over 500MB while PalDB takes about 80MB.