集册 Java实例教程 获取数组对象的长度和尺寸

获取数组对象的长度和尺寸

欢马劈雪     最近更新时间:2020-01-02 10:19:05

416
获取数组对象的长度和尺寸


import java.lang.reflect.Array;

/*
来 自*
 NowJava.com
*/

public class Main {

  public static void main(String[] args) {

    Object o = new int[1][2][3];


    // Get length

    int len = Array.getLength(o); // 1


    // Get dimension

    int dim = getDim(o); // 3

  }

  public static int getDim(Object array) {

    int dim = 0;

    Class cls = array.getClass();

    while 
展开阅读全文