为什么我使用 =(单个等号)进行的等式比较在 Java 中不能正常工作? [英] Why doesn't my equality comparison using = (a single equals) work correctly in Java?

查看:24
本文介绍了为什么我使用 =(单个等号)进行的等式比较在 Java 中不能正常工作?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在以下行中有语法错误.但是我不明白这个错误的原因是什么.

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);

我想要实现的是当且仅当 compareTo 返回 1 时打印正确的消息.

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

推荐答案

你应该比较 (==) 而不是赋值 (=).这可能非常危险!为了避免这种情况,你可以使用 Yoda notation 所以而不是比较

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

你可以比较一下:

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

这篇关于为什么我使用 =(单个等号)进行的等式比较在 Java 中不能正常工作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆