/** * Created by wangtiegang on 2017/2/25. */ public interface Iterator { public boolean hasNext(); public Object next(); }