Java 关系运算符
在Java中,类应该实现(扩展)什么接口(类),以便允许该类的两个实例通过关系运算符(如“<”)进行比较或“>=”?
In Java, what interface(class) should a class implement(extend) in order to allow two instances of the class to be comparable through relational operators like "<" or ">="?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这在 Java 中是不可能的。
如果您希望类的对象具有可比性,请实现 <代码>可比较。
This is not possible in Java.
If you want objects of your class to be comparable, implement
Comparable
.Java 不支持运算符重载,所以你运气不好。实现 java.lang.Comparable 或提供 java.util.Comparator 是您应该做的。
Java does not support operator overloading, so you're out of luck. Implementing
java.lang.Comparable
or providing ajava.util.Comparator
is what you're supposed to do.