写了个这样的方法public static boolean arrayNullOrEmpty(byte[] objs)
{
    return objs == null || objs.length == 0;
}
现在想用泛型,就是这个方法可以对int[],double[]之类的通用,请问如何写