import java.util.TreeSet;
class Test
{
public static void main(String[] args)
{
TreeSet t=new TreeSet();
t.add(null);
System.out.println(t);
}
}
output: NullPointerException. Ho letto in molti articoli che vuota TreeSet accetterà nullo per prima volta, ma sono sempre NullPointerException ... sto usando java7..can qualsiasi organismo chiarire il mio dubbio ....Aggiunta di null a vuoto TreeSet che genera NullPointerException
Perché si desidera aggiungere 'null' a' TreeSet'? E quali articoli potrebbe essere? – Eypros
Per me il codice funziona bene su java 1.6. Quale versione java usi? – Jens
Sto usando la versione 1.7 di java. – user3516780