Hi, ich möchte eine Element aus einer LinkedList an der Stelle index löschen und an der Stelle index hinzufügen. Ich erhalte jedoch in den Zeilen 14 und 28 die Fehlermeldungen" undefined and not applicable". Warum?
MfG Feras
MfG Feras
Java:
public class LinkedList implements Aufgabe2 {
LinkedList list = new LinkedList();
public void add(Object obj) {
list.add(obj);
}
public void insert(Object obj, int index) {
list.add(index, obj);
}
public Object get(int index) {
return list.get(index);
}
public void delete(int index) {
String temp = (String) list.get(index);
list.remove(temp);
}
}