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