package com.github.lqingchenl.coding2017.basic; public interface Iterator { public boolean hasNext(); public Object next(); }