package cn.fyl.first; public interface Iterator { public boolean hasNext(); public Object next(); }