Listen Flashcards

1
Q

interface List: Mit welcher Methode lässt sich die Länge einer List liste aufrufen?

A

liste.size();

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

interface List: Mit welcher Methode lässt sich ein Element e zur List liste hinzufügen?

A

liste.add(Element e);

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Welche Listentypen implementieren das interface List?

A

ArrayList, LinkedList

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

ArrayList: Mit welcher Methode ruft man ein Listenelement am index i auf?

A

liste.get(i);

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

while-Schleife, die Iterable ausnutzt

A

Iterator iterator = liste.iterator();
while (iterator.hasNext()) {
System.out.print(iterator.next() + “ “);
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly