iterable과 iterator 뭔가 Collection Framework쪽을 보면 자주 보이는 두개이다. 뭐가 다르길래 굳이 따로 쓸까?? Iterable interface public interface Collection extends Iterable { }자바 내부 코드를 보면 Collection이 이렇게 Iterable 인터페이스를 상속받고 있다. 그러면 이제 Iterable의 내부를 살펴보면 public interface Iterable { Iterator iterator(); default void forEach(Consumer