Exemplo n.º 1
0
 public static int dimensions(Class<?> c) {
   if (c.getComponentType() != null) {
     return 1 + dimensions(c.getComponentType());
   }
   return 0;
 }