Java中替代equals,compareTo和toString的方法
我们都曾在pojo中重写过equals(),compareto()和tostring()方法。但是另有其他能做到职责分离的更好的方法并带来更简洁的代码。阅读这篇文章来一探究竟吧!
更简明的职责——摆脱equals、compareto和tostring方法
你曾经查看过java文档中的object类吗?也许吧。每当你向上追溯继承树的时候都会止步于这个类。你会注意到,该类有几个方法是每一个类都必须继承的。而你最喜欢重写的方法可能就是tostring(), .equals() and .hashcode() 这三个了。(至于为何总是应该同时重写后两个方法,请看per-åke minborg写的这篇文章:)
但是仅仅有这几个方法显然是不够的。许多人将标准库中的其他的接口如comparable和serializable加以组合。但是这样真的明智吗?为什么每个人都很迫切地去自己实现这些方法呢?事实上,当你准备将对象存储在一些容器中,如hashmap,并且想要控制哈希冲突的时候,实现你自己的.equals()方法和.hashcode()方法确实有它的意义,但实现compareto()和tostring()方法又是为何呢?
本篇文章中我将提出一种使用到speedment 开源项目上的软件设计方法,这里的对象的方法被定义为存储于变量上的方法引用,而不是重写它们。这样做确有一些好处:你的pojo将会更短小简洁,通用的方法可以不需要继承而进行复用并且你可以因地制宜地使用它们。
原始的代码
首先我们来看下面的代码:这里有一个典型的java类person。在使用中需要从一个set中打印出每一个person对象,并且按照姓在前和名在后的顺序排列(以防出现两个相同姓氏的人)。
// person.java public class person implements comparable<person> { private final string firstname; private final string lastname; public person(string firstname, string lastname) { this.firstname = firstname; this.lastname = lastname; } public string getfirstname() { return firstname; } public string getlastname() { return lastname; } @override public int hashcode() { int hash = 7; hash = 83 * hash + objects.hashcode(this.firstname); hash = 83 * hash + objects.hashcode(this.lastname); return hash; } @override public boolean equals(object obj) { if (this == obj) return true; if (obj == null) return false; if (getclass() != obj.getclass()) return false; final person other = (person) obj; if (!objects.equals(this.firstname, other.firstname)) { return false; } return objects.equals(this.lastname, other.lastname); } @override public int compareto(person that) { if (this == that) return 0; else if (that == null) return 1; int comparison = this.firstname.compareto(that.firstname); if (comparison != 0) return comparison; comparison = this.lastname.compareto(that.lastname); return comparison; } @override public string tostring() { return firstname + " " + lastname; } }
// main.java public class main { public static void main(string... args) { final set people = new hashset<>(); people.add(new person("adam", "johnsson")); people.add(new person("adam", "samuelsson")); people.add(new person("ben", "carlsson")); people.add(new person("ben", "carlsson")); people.add(new person("cecilia", "adams")); people.stream() .sorted() .foreachordered(system.out::println); } }
output
run:
adam johnsson
adam samuelsson
ben carlsson
cecilia adams
build successful (total time: 0 seconds)
person
类实现了一些方法来控制输出。 hashcode()
和equals()
方法确保同一个person对象不会被重复添加到set中。.compareto()
方法用于排序方法中生成应有的顺序。而重写方法tostring()
是在system.out.println()
被调用的时候控制每个person对象的输出格式。你认出这种结构了吗?几乎任何一个java工程中都会有它。
替代这些代码
相比于将所有这些方法写入person类中,我们可以让它保持尽量的简洁,使用方法引用去处理它们。我们可以删除所有equals(),hashcode(),compareto()和tostring()的样板式代码,取而代之的是下面介绍的两个静态变量:comparator
和to_string
。
// person.java public class person { private final string firstname; private final string lastname; public person(string firstname, string lastname) { this.firstname = firstname; this.lastname = lastname; } public string getfirstname() { return firstname; } public string getlastname() { return lastname; } public final static comparator<person> comparator = comparator.comparing(person::getfirstname) .thencomparing(person::getlastname); public final static function<person, string> to_string = p -> p.getfirstname() + " " + p.getlastname(); }
// main.java public class main { public static void main(string... args) { final set people = new treeset<>(person.comparator); people.add(new person("adam", "johnsson")); people.add(new person("adam", "samuelsson")); people.add(new person("ben", "carlsson")); people.add(new person("ben", "carlsson")); people.add(new person("cecilia", "adams")); people.stream() .map(person.to_string) .foreachordered(system.out::println); } }
output
run:
adam johnsson
adam samuelsson
ben carlsson
cecilia adams
build successful (total time: 0 seconds)
这样实现的好处是我们可以在不用更改person类的情况下替换排序策略或打印格式。这将使代码拥有更强的可维护性和复用性,更不用说更快的编写速度了。
译文链接:
英文原文:get rid of equals, compareto and tostring
以上就是java中替代equals,compareto和tostring的方法的详细内容,更多关于java替代equals,compareto和tostring的资料请关注其它相关文章!
上一篇: Paypal支付不完全指北