Ricevo un errore quando si cerca di creare l'elenco collegato che dice:"LinkedList non è generico" errore Java
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
The type LinkedList is not generic; it cannot be parameterized with arguments <String>
at LinkedList.main(LinkedList.java:7)
Qualcuno sa come risolvere questo errore? Ecco il programma:
import java.util.*;
public class LinkedList {
public static void main(String[] args) {
List<String> list = new LinkedList<String>();
Scanner input = new Scanner(System.in);
System.out.print("How many elements do you want to add: ");
int num = input.nextInt();
for(int i = 0; i < num; i++) {
System.out.print("Add Element: ");
String element = input.next();
list.add(element);
}
System.out.println();
System.out.println("LinkedList elements are: ");
for(int i = 0; i < list.size(); i++) {
System.out.println(list.get(i));
}
}
}
Che cosa stai cercando di fare? La classe LinkedList che stai creando è una libreria di classi built-in Java in Collections. Cambia il tuo nome di classe. –