@TeriRadichel | Cloud. Security. Software.
Notes. Code. Cloud. AWS. Security. Automation. Databases. Bugs. Error Messages. No Guarantees.
Saturday, August 15, 2009
Java Generics List Iterator
Example of using Java generics list iterator
List<Element> l;
for (ListIterator<Element> it = l.listIterator(); it.hasNext(); )
{
Element e = it.next();
.....
}
‹
›
Home
View web version