对于基本类型比较 eg int double 比较 使用 ==对于对象类型比较 使用equals() eg:Integer A = 23 Integer B = 23 boolean bl = A.equals(B) bl = true 比较对象的内容的问题