package com.iailab.framework.common.core; /** * 可生成 T 数组的接口 * * @author HUIHUI */ public interface ArrayValuable { /** * @return 数组 */ T[] array(); }