Java代码中的奇怪逻辑错误

时间:2015-08-31 09:22:53

标签: java lambda method-reference

interface New<T> {
   boolean func(T n, T v);
}
class MyFunc<T>{
T val;
MyFunc(T val){
   this.val = val;
}
void Set(T val){
   this.val = val;
}
T Get(){
   return val;
}
boolean isEqual(MyFunc<T> o){
   if(val == o.val) return true;
return false;
}
public class Main {
  static <T> boolean check(New<T> n , T a, T b){
     return n.func(a,b);
  }
  public static void main(String args[]){
   int a = 321;
   MyFunc<Integer> f1 = new MyFunc<Integer>(a);
   MyFunc<Integer> f2 = new MyFunc<Integer>(a);

   boolean result;
   //f2.Set(f1.Get()); //if i uncomment this line result become true
   System.out.println(f1.val + "  " + f2.val);
   System.out.println();

   result = check(MyFunc::isEqual, f1, f2);
   System.out.println("f1 isEqual to f2: " + result);
  }
}

'a'f1使用f2时,为何结果为假? 为什么在f2.Set(f1.Get());取消注释时结果为真? 请解释一下我在哪里弄错了。

2 个答案:

答案 0 :(得分:5)

.isEquals()方法中,您将包装器对象与==运算符进行比较,该运算符会比较对象引用(如果它们不在Integer内部缓存中。

由于321超出Integer缓存,==运算符返回false,因为引用不同(f1指的是不同的内存地址比f2)。

显式将引用设置为相等(使用f2.Set(f1.Get()))时,程序输出true并不奇怪。

如果您将a设置为-128127之间的某个位置,程序将输出true

答案 1 :(得分:3)

aauto boxedInteger,对于int a = 321;Objectsf1会有两个f2

例如

Integer a1 = new Integer(321);
Integer a2 = new Integer(321);

对于a1 == a2,您将false因为==比较引用而不是值,您应该使用equals方法检查isEqual方法中的值。