houzhongjian
2024-12-27 12db859ea1485e676b6e11927946cb50f79e27a8
提交 | 用户 | 时间
e7c126 1 package com.iailab.framework.common.core;
H 2
3 /**
4  * 可生成 Int 数组的接口
5  *
6  * @author iailab
7  */
8 public interface IntArrayValuable {
9
10     /**
11      * @return int 数组
12      */
13     int[] array();
14
15 }