값 타입 비교

· JPA
목표 인스턴스가 달라도 그 안의 값이 같으면 같은 것으로 볼 수 있게한다. (특히 참조 객체에서) int a = 5; int b = 5; System.out.println("a==b : " + (a==b)); // true City city1 = new City("Seoul", "street", "10000"); City city2 = new City("Seoul", "street", "10000"); System.out.println("city1==city2 : " + (city1==city2)); // false System.out.println("city1==city2 : " + (city1.equals(city2))); // false 값 타입 비교 1) 동일성(identity) 비교 : 인스턴스..
째로스
'값 타입 비교' 태그의 글 목록