반응형
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
|
반응형
'java' 카테고리의 다른 글
java classpath file absolute path (0) | 2019.06.06 |
---|---|
spring boot ssl 적용 (0) | 2019.05.22 |
[java - maven - pom.xml] profiles 예제 (0) | 2019.05.13 |
spring boot - FilterRegistrationBean multiple filters (0) | 2019.05.13 |
STS4 에 jsp editor 가 없네요. (0) | 2019.05.11 |
java log4j.properties samlple (0) | 2019.05.03 |
java 정규식 한글 검사 (0) | 2019.05.03 |
이니시스 이니페이 결제취소 오류. (0) | 2019.05.02 |