File tree 12 files changed +109
-78
lines changed
main/java/com/baeldung/equalshashcode
test/java/com/baeldung/equalshashcode
src/main/java/com/baeldung/map/hashCode
12 files changed +109
-78
lines changed Original file line number Diff line number Diff line change 66
66
<artifactId >mail</artifactId >
67
67
<version >${javax.mail.version} </version >
68
68
</dependency >
69
+ <dependency >
70
+ <groupId >nl.jqno.equalsverifier</groupId >
71
+ <artifactId >equalsverifier</artifactId >
72
+ <version >${equalsverifier.version} </version >
73
+ <scope >test</scope >
74
+ </dependency >
69
75
</dependencies >
70
76
71
77
<build >
424
430
<maven-shade-plugin .version>3.1.1</maven-shade-plugin .version>
425
431
<spring-boot-maven-plugin .version>2.0.3.RELEASE</spring-boot-maven-plugin .version>
426
432
<exec-maven-plugin .version>1.6.0</exec-maven-plugin .version>
433
+ <equalsverifier .version>3.0.3</equalsverifier .version>
427
434
</properties >
428
435
429
436
</project >
Original file line number Diff line number Diff line change 1
- package com .baeldung .map . hashcode ;
1
+ package com .baeldung .equalshashcode ;
2
2
3
3
class Money {
4
4
@@ -17,15 +17,19 @@ public boolean equals(Object o) {
17
17
if (!(o instanceof Money ))
18
18
return false ;
19
19
Money other = (Money )o ;
20
+ boolean currencyCodeEquals = (this .currencyCode == null && other .currencyCode == null )
21
+ || (this .currencyCode != null && this .currencyCode .equals (other .currencyCode ));
20
22
return this .amount == other .amount
21
- && this . currencyCode == other . currencyCode ;
23
+ && currencyCodeEquals ;
22
24
}
23
25
24
26
@ Override
25
27
public int hashCode () {
26
28
int result = 17 ;
27
29
result = 31 * result + amount ;
28
- result = 31 * result + currencyCode .hashCode ();
30
+ if (currencyCode != null ) {
31
+ result = 31 * result + currencyCode .hashCode ();
32
+ }
29
33
return result ;
30
34
}
31
35
Original file line number Diff line number Diff line change 1
- package com .baeldung .map . hashcode ;
1
+ package com .baeldung .equalshashcode ;
2
2
3
3
class Team {
4
4
Original file line number Diff line number Diff line change
1
+ package com .baeldung .equalshashcode ;
2
+
3
+ class Voucher {
4
+
5
+ private Money value ;
6
+ private String store ;
7
+
8
+ Voucher (int amount , String currencyCode , String store ) {
9
+ this .value = new Money (amount , currencyCode );
10
+ this .store = store ;
11
+ }
12
+
13
+ @ Override
14
+ public boolean equals (Object o ) {
15
+ if (o == this )
16
+ return true ;
17
+ if (!(o instanceof Voucher ))
18
+ return false ;
19
+ Voucher other = (Voucher )o ;
20
+ boolean valueEquals = (this .value == null && other .value == null )
21
+ || (this .value != null && this .value .equals (other .value ));
22
+ boolean storeEquals = (this .store == null && other .store == null )
23
+ || (this .store != null && this .store .equals (other .store ));
24
+ return valueEquals && storeEquals ;
25
+ }
26
+
27
+ @ Override
28
+ public int hashCode () {
29
+ int result = 17 ;
30
+ if (this .value != null ) {
31
+ result = 31 * result + value .hashCode ();
32
+ }
33
+ if (this .store != null ) {
34
+ result = 31 * result + store .hashCode ();
35
+ }
36
+ return result ;
37
+ }
38
+ }
Original file line number Diff line number Diff line change 1
- package com .baeldung .map . hashcode ;
1
+ package com .baeldung .equalshashcode ;
2
2
3
+ /* (non-Javadoc)
4
+ * This class overrides equals, but it doesn't override hashCode.
5
+ *
6
+ * To see which problems this leads to:
7
+ * TeamUnitTest.givenMapKeyWithoutHashCode_whenSearched_thenReturnsWrongValue
8
+ */
3
9
class WrongTeam {
4
10
5
11
String city ;
Original file line number Diff line number Diff line change
1
+ package com .baeldung .equalshashcode ;
2
+
3
+ /* (non-Javadoc)
4
+ * This class extends the Money class that has overridden the equals method and once again overrides the equals method.
5
+ *
6
+ * To see which problems this leads to:
7
+ * MoneyUnitTest.givenMoneyAndVoucherInstances_whenEquals_thenReturnValuesArentSymmetric
8
+ */
9
+ class WrongVoucher extends Money {
10
+
11
+ private String store ;
12
+
13
+ WrongVoucher (int amount , String currencyCode , String store ) {
14
+ super (amount , currencyCode );
15
+
16
+ this .store = store ;
17
+ }
18
+
19
+ @ Override
20
+ public boolean equals (Object o ) {
21
+ if (o == this )
22
+ return true ;
23
+ if (!(o instanceof WrongVoucher ))
24
+ return false ;
25
+ WrongVoucher other = (WrongVoucher )o ;
26
+ boolean currencyCodeEquals = (this .currencyCode == null && other .currencyCode == null )
27
+ || (this .currencyCode != null && this .currencyCode .equals (other .currencyCode ));
28
+ boolean storeEquals = (this .store == null && other .store == null )
29
+ || (this .store != null && this .store .equals (other .store ));
30
+ return this .amount == other .amount
31
+ && currencyCodeEquals
32
+ && storeEquals ;
33
+ }
34
+
35
+ @ Override
36
+ public int hashCode () {
37
+ int result = 17 ;
38
+ result = 31 * result + amount ;
39
+ if (this .currencyCode != null ) {
40
+ result = 31 * result + currencyCode .hashCode ();
41
+ }
42
+ if (this .store != null ) {
43
+ result = 31 * result + store .hashCode ();
44
+ }
45
+ return result ;
46
+ }
47
+ }
Original file line number Diff line number Diff line change 1
- package com .baeldung .map . hashcode ;
1
+ package com .baeldung .equalshashcode ;
2
2
3
3
import static org .junit .Assert .assertTrue ;
4
4
import static org .junit .Assert .assertFalse ;
Original file line number Diff line number Diff line change 1
- package com .baeldung .map . hashcode ;
1
+ package com .baeldung .equalshashcode ;
2
2
3
3
import static org .junit .Assert .assertEquals ;
4
4
import static org .junit .Assert .assertFalse ;
Original file line number Diff line number Diff line change 41
41
<artifactId >streamex</artifactId >
42
42
<version >0.6.5</version >
43
43
</dependency >
44
- <dependency >
45
- <groupId >nl.jqno.equalsverifier</groupId >
46
- <artifactId >equalsverifier</artifactId >
47
- <version >3.0.3</version >
48
- <scope >test</scope >
49
- </dependency >
50
44
</dependencies >
51
45
52
46
<properties >
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments