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
标签:body [] out str pac 获取 pos oid 长度
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
标签:body [] out str pac 获取 pos oid 长度
原文地址:https://www.cnblogs.com/zhuxiaopang/p/8496621.html