sábado, 25 de agosto de 2018

ArrayList and Itrator #JAVA code

ArrayList and Itrator #JAVA code
Iterator it = arl.iterator();
while(it.hasNext())
System.out.println("Iterator in action: " + it.next());
ArrayList arl = new ArrayList();






Blogger Widgets