I have a list of int and I want to save more numbers in it, but numbers that do not repeat themselves.
How do I find if it already has a certain value in this list?
Whenever I try to create a objeto.add(); and put the attribute on it, it still gives me an error. See my code:
public class Agencia {
private String nome;
private String endr;
Set<Conta> listaContas = new HashSet<Co...
How to use LinkedHashSet implementing the interface IHashSet using thread to resolve conflicts and with load factor 0.75?
//Usando essa interface
public interface IHashSet{
public void put(Object data);
public boolean contains(...