dengzedong
2024-12-31 f20e755c36d40d3474b6866b4f1b006cb128ef75
提交 | 用户 | 时间
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 }