Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- JsonSerializer
- 브루트포스
- application.properties
- Application Argument
- 리소스핸들러
- HATEOAS
- 스프링 부트
- rest api
- 정적 리소스
- cors
- 리소스 서버
- AuthenticationPrincipal
- webjar
- 백기선
- @ConfigurationProperties
- OAuth2
- EnableAutoConfiguration
- Spring Security
- 스프링부트
- HttpMessageConverters
- 다익스트라
- 알고리즘
- 외부설정
- @Profile
- 백준
- Application Event
- JPA
- Application Runner
- 백트래킹
- WebApplication Type
Archives
- Today
- Total
아카이브
== 연산자와 equals()의 차이점 본문
== 연산자와 equals()의 차이점
- == 연산자는 비교 대상의 주소값을 비교하고 equals() 메소드는 대상의 값 자체를 비교
System.out.println(a.equals(b)); // true 값이 동일
System.out.println(a==b); // true 주소가 동일
System.out.println(a==c); // false 주소가 다름
System.out.println(a.equals(c)); // true 값이 동일
'프로그래밍' 카테고리의 다른 글
OOP의 4가지 특징 (0) | 2018.06.18 |
---|---|
Call by Value 와 Call by Reference (0) | 2018.06.18 |
Overriding 과 Overloading (0) | 2018.06.18 |
Garbage와 Garbage Collection (0) | 2018.06.18 |
Wrapper Class를 사용하는 이유 (0) | 2018.06.18 |