Here you can find the source of arrayLength(Object[] ar)
public static int arrayLength(Object[] ar)
//package com.java2s; public class Main { public static int arrayLength(Object[] ar) { return ar.length; }// w ww . j av a 2 s .co m }