-1

I have a syntax error in the following line. However I can't understand what is the reason of this error.

if (address1.compareTo(address2) = 1)
        System.out.println(address1 + " is greater than " + address2);

What I want to achieve is printing proper message if and only if compareTo returns 1.

xenteros
  • 15,586
  • 12
  • 56
  • 91
S.Strachan
  • 49
  • 4

1 Answers1

4

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

enter image description here

T.J. Crowder
  • 1,031,962
  • 187
  • 1,923
  • 1,875
xenteros
  • 15,586
  • 12
  • 56
  • 91
  • There's never any need for Yoda notation in Java. If you're dealing with a boolean, you don't use `==` at all except in a **very** small set of use cases. If you're dealing with a non-boolean, the compiler will refuse to compile `if (foo = 42)` because you can't use an `int` (etc.) as a condition. – T.J. Crowder Feb 17 '17 at 16:14