Why doesn#39;t my equality comparison using = (a single equals) work correctly in Java?(为什么我使用 =(单个等号)进行的等式比较在 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 中不能正常工作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么我使用 =(单个等号)进行的等式比较在 Java 中不能正常工作?
基础教程推荐
- 如何在 Spring @Value 注解中正确指定默认值? 2022-01-01
- 不推荐使用 Api 注释的描述 2022-01-01
- 大摇大摆的枚举 2022-01-01
- 在 Java 中创建日期的正确方法是什么? 2022-01-01
- Java Swing计时器未清除 2022-01-01
- 如何在 JFrame 中覆盖 windowsClosing 事件 2022-01-01
- 验证是否调用了所有 getter 方法 2022-01-01
- 多个组件的复杂布局 2022-01-01
- 从 python 访问 JVM 2022-01-01
- Java 实例变量在两个语句中声明和初始化 2022-01-01
