package ϿܣLSP; /** * 迭代器接? * @author * @version 1.0 * @created 23-10-2025 21:37:10 */ public interface Iterator { public boolean hasNext(); public E next(); public void remove(); }