比较两个可为null的对象

比较两个可为null的对象相等方法:

null==o1?null==o2:o1.equals(o2)

方法在equals中特别实用。


你可能感兴趣的:(null,equals)