Skip to content

Instantly share code, notes, and snippets.

@hackjutsu
Created May 20, 2019 01:07
Show Gist options
  • Select an option

  • Save hackjutsu/f763cc6397461007d2635078d16cc0be to your computer and use it in GitHub Desktop.

Select an option

Save hackjutsu/f763cc6397461007d2635078d16cc0be to your computer and use it in GitHub Desktop.
[medium snippets] #medium #designPattern #IteratorPattern
public class ClientMain {
public static void main(String[] args) {
PetRepository pets = new PetRepository();
for (Iterator iter = pets.getIterator(); iter.hasNext(); ) {
String name = (String) iter.next();
System.out.println(name);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment