潘志宝
2024-09-12 27e7299964b861c079dbb2826edab00dfd6dc27d
提交 | 用户 | 时间
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 }