java. util. List

 0    11 flashcards    nataliaadamczyk7
download mp3 print play test yourself
 
Question język polski Answer język polski
java. util. List
start learning
Zestaw metod jak dla każdej kolekcji
Object get(int index);
start learning
Metody z pozycją elementu na liście jako argumentem;
Object set(int index, Object element);
start learning
Metody z pozycją elementu na liście jako argumentem
void add(int index, Object element);
start learning
Metody z pozycją elementu na liście jako argumentem
Object remove(int index);
start learning
Metody z pozycją elementu na liście jako argumentem
abstract boolean addAll(int index, Collection c);
start learning
Metody z pozycją elementu na liście jako argumentem
List subList(int from, int to);
start learning
Metody specyficzne dla listy
ListIterator listIterator(int index);
start learning
Metody specyficzne dla listy
int lastIndexOf(Object o);
start learning
Metody specyficzne dla listy
int indexOf(Object o);
start learning
Metody specyficzne dla listy
Podstawowa implementacja java. util. List
start learning
java. util. ArrayList; implementowanie interfejsu List jako ArrayList

You must sign in to write a comment