반응형

Integer 끼리 비교 할 때 == 연산자로 비교하면 아니 됩니다.

public class Test {
  public static void main(String[] args) {
    Integer a = 1000;
    Integer b = 1000;
    System.out.println(a == b);
    System.out.println(a.equals(b));
    System.out.println(a.intValue() == b);
    System.out.println(1000 == a);
  }
}
false
true
true
true
반응형

+ Recent posts