Guest User

Untitled

a guest
Apr 19th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. public boolean isEmpty(Object[] array) {
  2. boolean result; // по-умолчанию false
  3. result = array.length == 0 ? true : false;
  4. return result;
  5. }
Add Comment
Please, Sign In to add comment