泛型接口工具类

package generics;

public interface Generator<T> {

T next();
}

原文地址:https://www.cnblogs.com/tingbogiu/p/5842536.html