Un HashSet encapsule les opérations qui permettent la comparaison d'éléments dans des collections. Les HashSets sont fréquemment utilisés pour déterminer les éléments uniques et qui se chevauchent dans une collection.
Jon Skeet a récemment soulevé un sujet de programmation intéressant sur son blog: "Il y a un trou dans mon abstraction, chère Liza, chère Liza" (italiques ajoutés): J'ai un ensemble - un HashSet, en fait. Je souhaite supprimer certains éléments de celui-ci… et de nombreux éléments peuvent bien ne pas …
Donc à l'origine, j'avais ce code: import java.util.*; public class sandbox { public static void main(String[] args) { HashSet<Integer> hashSet = new HashSet<>(); for (int i = 0; i < 100_000; i++) { hashSet.add(i); } long start = System.currentTimeMillis(); for (int i = 0; i < 100_000; i++) { for …
We use cookies and other tracking technologies to improve your browsing experience on our website,
to show you personalized content and targeted ads, to analyze our website traffic,
and to understand where our visitors are coming from.
By continuing, you consent to our use of cookies and other tracking technologies and
affirm you're at least 16 years old or have consent from a parent or guardian.