The List Interface (The Java™ Tutorials > Collections > Inter...
Popularity Report
![]() |
|||
![]() |
|||
![]() |
|||
![]() |
|||
![]() |
|||
![]() |
URL Tag Cloud
Bookmark History
Saved by 3 people (0 private), first by anonymouse user on 2007-11-21
- Sohohk on 2008-07-07 - Tags no_tag
- Redertseng on 2008-03-04 - Tags collections , List , ListIterator
- Pavel1998 on 2007-11-21 - Tags java , tutorial
Public Sticky notes
A
List is an ordered
Collection (sometimes called a sequence). Lists may contain duplicate elements.
Highlighted by redertseng
LinkedList which offers better performance under certain circumstances
Highlighted by sohohk
for (ListIterator<E> it = list.listIterator(); it.hasNext(); ){
Highlighted by pavel1998
for (ListIterator<Type> it = list.listIterator(list.size());
it.hasPrevious(); ) {
Type t = it.previous();
...
}
Highlighted by redertseng


Public Comment