0
Q:

isempty for arrays

Object arr[] = new Object[10];
boolean empty = true;
for (Object ob : arr) {
  if (ob != null) {
    empty = false;
    break;
  }
}
0
int arr[] = null;
if (arr == null) {
  System.out.println("array is null");
}
0
arr = new int[0];
if (arr.length == 0) {
  System.out.println("array is empty");
}
0
Object arr[] = new Object[10];
boolean empty = true;
for (int i=0; i<arr.length; i++) {
  if (arr[i] != null) {
    empty = false;
    break;
  }
}
0

New to Communities?

Join the community