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
Posted 猪小胖
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java 实例 – 获取数组长度相关的知识,希望对你有一定的参考价值。
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
以上是关于Java 实例 – 获取数组长度的主要内容,如果未能解决你的问题,请参考以下文章