判断数组是否为 null @param objects object[] @return true yes, false no
(final Object[] objects)
| 36 | * @return {@code true} yes, {@code false} no |
| 37 | */ |
| 38 | public static boolean isEmpty(final Object[] objects) { |
| 39 | return objects == null || objects.length == 0; |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * 判断数组是否为 null |