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