hutool工具数组调整大小

简介: hutool工具数组调整大小

使用 ArrayUtil.resize方法生成一个新的重新设置大小的数组。

importcn.hutool.core.util.ArrayUtil;
importjava.util.Arrays;
publicclassTest {
publicstaticvoidmain(String[] args) {
int[] arr= (int[]) ArrayUtil.resize(newint[]{1, 2, 3, 4, 5}, 3);
System.out.println(Arrays.toString(arr));
    }
}

image.png

相关文章
hutool工具获得一个随机的字符串
hutool工具获得一个随机的字符串
hutool工具分页工具
hutool工具分页工具

热门文章

最新文章

下一篇
开通oss服务