sbool eqOrSame(Object a, Object b) { ret a == null ? b == null : a == b || b != null && a.equals(b); }