You should compare (==
) instead of assigning (=
). It can be very dangerous! To avoid such situations you can use Yoda notation
so instead of comparing
address1.compareTo(address2) == 1
You can compare:
1 == address1.compareTo(address2)
In case of missing =
, there will be comparation error.
In your case, it would be better to compare:
address1.compareTo(address2) > 0
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…