package nishuibaichuan.homework.first; public interface Iterator { public boolean hasNext(); public Object next(); public void remove(); }