package array; public class ArrayLength { public static void main(String[] args) { /** * 获取数组的长度 */ int i[] = { 1, -4, 1, -2, 4, 7, 8, 5, 4, -1, 25 }; System.out.println("数组长度是:"+i.length); } }
输出结果为
数组长度是:11
原文地址:https://www.cnblogs.com/zhuxiaopang/p/8496621.html
时间: 2024-11-06 22:52:35