package DataStruct; /** * Created by dengdechao on 2017/2/27. */ public interface Iterator { public boolean hasNext(); public Object next(); }