dongyukun
2024-12-31 0a2b23ad3f30dfb01c5d590fb98f39e93bfe1932
提交 | 用户 | 时间
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 }