Questions marquées «set»

324
Obtenir un élément d'un ensemble

Pourquoi ne Setfournit pas une opération pour obtenir un élément qui est égal à un autre élément? Set<Foo> set = ...; ... Foo foo = new Foo(1, 2, 3); Foo bar = set.get(foo); // get the Foo element from the Set that equals foo Je peux demander si le Setcontient un élément égal à bar, alors...