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