Nesse exercício a resposta dada como correta é:
public static void main(String[] args) { TreeSet conjunto = new TreeSet<>(); for (int i = 1; i <= 1000; i++) { conjunto.add(i); }
for (Integer i : conjunto.descendingSet()) { System.out.print(i + " "); } } }
Porém quando copio e colo no eclipse e tendo rodar o programa, surge o seguinte erro:
Exception in thread "main" java.lang.Error: Unresolved compilation problems: The type TreeSet is not generic; it cannot be parameterized with arguments The type TreeSet is not generic; it cannot be parameterized with arguments <>
at testes.TreeSet.main(TreeSet.java:6)
Como devo prosseguir??