番石榴的对象类:Equals,HashCode和ToString

如果您有幸使用JDK 7 ,那么新的可用Objects类 ( 至少对我来说 )是实现“通用” Java对象方法(例如equals(Object) [with Objects.equals(Object,Object ) ], hashCode() [带有Objects.hashCode(Object)或Objects.hash(Object…) ]和toString() [带有Objects.toString(Object) ]以适当地覆盖默认的Object实现。 我写过有关使用Objects类的文章: JDK 7:New Objects类和Java 7 Objects-Powered Compact Equals 。

如果你还没有使用Java 7,你最好的选择可能是Apache的百科全书建设者ToStringBuilder和EqualsBuilder和HashCodeBuilder (如果你之前使用的Java版本,以J2SE 5)或番石榴 (如果你使用J2SE 5或后来)。 在本文中,我将研究如何使用Guava的Objects类来实现三种常见的方法equalshashCodetoString()

在没有Guava或其他库的帮助下,本文中讨论的三种常见方法通常会突出显示,如下面的代码清单所示。 这些方法是使用NetBeans 7.1 beta生成的。

传统员工

package dustin.examples;import java.util.Calendar;/*** Simple employee class using NetBeans-generated 'common' methods* implementations that are typical of many such implementations created* without Guava or other library.* * @author Dustin*/
public class TraditionalEmployee
{public enum Gender{ FEMALE, MALE };private final String lastName;private final String firstName;private final String employerName;private final Gender gender;/*** Create an instance of me.* * @param newLastName The new last name my instance will have.* @param newFirstName The new first name my instance will have.* @param newEmployerName The employer name my instance will have.* @param newGender The gender of my instance.*/public TraditionalEmployee(final String newLastName, final String newFirstName,final String newEmployerName, final Gender newGender){this.lastName = newLastName;this.firstName = newFirstName;this.employerName = newEmployerName;this.gender = newGender;}public String getEmployerName(){return this.employerName;}public String getFirstName(){return this.firstName;}public Gender getGender(){return this.gender;}public String getLastName(){return this.lastName;}/*** NetBeans-generated method that compares provided object to me for equality.* * @param obj Object to be compared to me for equality.* @return {@code true} if provided object is considered equal to me or*    {@code false} if provided object is not considered equal to me.*/@Overridepublic boolean equals(Object obj){if (obj == null){return false;}if (getClass() != obj.getClass()){return false;}final TraditionalEmployee other = (TraditionalEmployee) obj;if ((this.lastName == null) ? (other.lastName != null) : !this.lastName.equals(other.lastName)){return false;}if ((this.firstName == null) ? (other.firstName != null) : !this.firstName.equals(other.firstName)){return false;}if ((this.employerName == null) ? (other.employerName != null) : !this.employerName.equals(other.employerName)){return false;}if (this.gender != other.gender){return false;}return true;}/*** NetBeans-generated method that provides hash code of this employee instance.* * @return My hash code.*/@Overridepublic int hashCode(){int hash = 3;hash = 19 * hash + (this.lastName != null ? this.lastName.hashCode() : 0);hash = 19 * hash + (this.firstName != null ? this.firstName.hashCode() : 0);hash = 19 * hash + (this.employerName != null ? this.employerName.hashCode() : 0);hash = 19 * hash + (this.gender != null ? this.gender.hashCode() : 0);return hash;}/*** NetBeans-generated method that provides String representation of employee* instance.* * @return My String representation.*/@Overridepublic String toString(){return  'TraditionalEmployee{' + 'lastName=' + lastName + ', firstName=' + firstName+ ', employerName=' + employerName + ', gender=' + gender +  '}';}
}

尽管NetBeans 7.1 Beta在这里完成了繁重的工作,但仍必须维护此代码,并使它们更具可读性。 下一个类是相同的类,但是具有Guava支持的通用方法,而不是上面显示的NetBeans生成的“典型”实现。

番石榴员工

package dustin.examples;/*** Simple employee class using Guava-powered 'common' methods implementations.* * I explicitly scope the com.google.common.base.Objects class here to avoid the* inherent name collision with the java.util.Objects class.* * @author Dustin*/
public class GuavaEmployee
{public enum Gender{ FEMALE, MALE };private final String lastName;private final String firstName;private final String employerName;private final TraditionalEmployee.Gender gender;/*** Create an instance of me.* * @param newLastName The new last name my instance will have.* @param newFirstName The new first name my instance will have.* @param newEmployerName The employer name my instance will have.* @param newGender The gender of my instance.*/public GuavaEmployee(final String newLastName, final String newFirstName,final String newEmployerName, final TraditionalEmployee.Gender newGender){this.lastName = newLastName;this.firstName = newFirstName;this.employerName = newEmployerName;this.gender = newGender;}public String getEmployerName(){return this.employerName;}public String getFirstName(){return this.firstName;}public TraditionalEmployee.Gender getGender(){return this.gender;}public String getLastName(){return this.lastName;}/*** Using Guava to compare provided object to me for equality.* * @param obj Object to be compared to me for equality.* @return {@code true} if provided object is considered equal to me or*    {@code false} if provided object is not considered equal to me.*/@Overridepublic boolean equals(Object obj){if (obj == null){return false;}if (getClass() != obj.getClass()){return false;}final GuavaEmployee other = (GuavaEmployee) obj;return   com.google.common.base.Objects.equal(this.lastName, other.lastName)&& com.google.common.base.Objects.equal(this.firstName, other.firstName)&& com.google.common.base.Objects.equal(this.employerName, other.employerName)&& com.google.common.base.Objects.equal(this.gender, other.gender);}/*** Uses Guava to assist in providing hash code of this employee instance.* * @return My hash code.*/@Overridepublic int hashCode(){return com.google.common.base.Objects.hashCode(this.lastName, this.firstName, this.employerName, this.gender);}/*** Method using Guava to provide String representation of this employee* instance.* * @return My String representation.*/@Overridepublic String toString(){return com.google.common.base.Objects.toStringHelper(this).addValue(this.lastName).addValue(this.firstName).addValue(this.employerName).addValue(this.gender).toString();}
}

如上面的代码所示,Guava的使用提高了三种常用方法的实现的可读性。 唯一不好的是需要在代码中显式定义Guava的Objects类,以避免与Java SE 7的Objects类发生命名冲突。 当然,如果不是使用Java 7,那么这不是问题,如果使用Java 7,则无论如何都应该使用标准版本。

结论

Guava通过其Objects类提供了一种构建更安全,更易读的通用方法的好方法。 尽管我将对JDK 7项目使用新的java.util.Objects类,但是Guava的com.google.common.base.Objects类为在JDK 7之前的Java版本中工作提供了一个不错的选择。

参考: Guava的Objects类:来自JCG合作伙伴 Dustin Marx的Equals,HashCode和ToString,来自Inspired by Actual Events博客。

翻译自: https://www.javacodegeeks.com/2012/11/guavas-objects-class-equals-hashcode-and-tostring.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/370491.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

此服务器的时钟与主域控制器的时钟不一致_中移动“超高精度时间同步服务器”开标,两家中标...

8月25日,中国移动发布《2020年至2022年同步网设备集中采购_中标候选人公示》公告。两家中标。同步网技术比较小众,但是同步网是5G承载网的重要一环,分享一下,供大家参考。中标情况 标包1-时钟同步设备中标候选人依次排序为&#x…

java 异常管理员_GitHub - kangZan/JCatch: Exception异常管理平台,支持Java、PHP、Python等多种语言...

什么是JCatch当程序发生异常(Exception),处理方式一般是通过日志文件记录下来,这种方式很容易被忽略,而且查询起来比较麻烦。JCatch提供了一种方案,当程序发生异常时,通过JCatch平台接口提交到JCatch平台,由…

oled

gnd、vcc、clk、miso、rst、mosi、cs 转载于:https://www.cnblogs.com/scrazy/p/7892733.html

使用html css js实现计算器

使用html css js实现计算器&#xff0c;开启你的计算之旅吧 效果图&#xff1a; 代码如下&#xff0c;复制即可使用&#xff1a; <!DOCTYPE html><html lang"en"> <head> <meta charset"utf-8"> <style> /* 主体 */ .co…

面向对象的三个基本特征

面向对象的三个基本特征是&#xff1a;封装、继承、多态。封装 封装最好理解了。封装是面向对象的特征之一&#xff0c;是对象和类概念的主要特性。封装&#xff0c;也就是把客观事物封装成抽象的类&#xff0c;并且类可以把自己的数据和方法只让可信的类或者对象操作&#xff…

Spring构造函数注入和参数名称

在运行时&#xff0c;除非在启用了调试选项的情况下编译类&#xff0c;否则Java类不会保留构造函数或方法参数的名称。 这对于Spring构造函数注入有一些有趣的含义。 考虑以下简单的类 package dbg; public class Person {private final String first;private final String …

java学习文档_资深程序员带你深入了解JAVA知识点,实战篇,PDF文档

JAVA 集合JAVA 集合面对浩瀚的网络学习资源&#xff0c;您是否为很难找到适合自己的学习资源而感到苦恼过&#xff1f;那么&#xff0c;您来对地方了。在这里我们帮助大家整理了一份适于轻松学习 Java 文章的清单。JVM文字太多&#xff0c;不便之处敬请谅解JAVA 集合文字太多&a…

java程序员电影_Java程序员必看电影:Java 4-ever

(Scene: A father and his son playing "throw-and-catch")(场景: 一位父亲和儿子玩丢接球游戏)Narrator: They appear to be a perfect family旁白: 他们看起来像是一个完美的家庭(Scene: bedtime story)(场景: 床边故事)Father: Export all OLE objects with the c…

深入理解softmax函数

Softmax回归模型&#xff0c;该模型是logistic回归模型在多分类问题上的推广&#xff0c;在多分类问题中&#xff0c;类标签 可以取两个以上的值。Softmax模型可以用来给不同的对象分配概率。即使在之后&#xff0c;我们训练更加精细的模型时&#xff0c;最后一步也需要用soft…

《第二章:深入了解超文本》

从本章开始要去除无用的话&#xff0c;只在笔记中记载要点----- 使用<a>元素创建一个超文本链接&#xff0c;链接到另一个Web页面。 <a>元素的内容会成为Web页面中可单击的文本。 href属性告诉浏览器链接的目标文件。 了解属性 例&#xff1a;style的type属性指定…

strcpy函数_错误更正(拷贝赋值函数的正确使用姿势)

这是一篇对什么是C的The Rule of Three的错误更正和详细说明。阅读时间7分钟。难度⭐⭐⭐虽然上一篇文章的阅读量只有凄惨的两位数&#xff0c;但是怀着对小伙伴负责的目的&#xff0c;必须保证代码的正确性。这是大厨做技术自媒体的态度。前文最后一段代码是这样的&#xff1a…

将Java应用程序打包为一个(或胖)JAR

这篇文章的目标是一个有趣但非常强大的概念&#xff1a;将应用程序打包为单个可运行的JAR文件&#xff0c;也称为一个或胖 JAR文件。 我们习惯了大型WAR归档文件&#xff0c;其中包含所有打包在某些公用文件夹结构下的依赖项。 使用类似于JAR的打包&#xff0c;情况有所不同&a…

学习java的第三天,猜字符的小程序

关于猜字符的小程序 主要实现&#xff1a;随机输出5个字母&#xff0c;用户输入猜测的字母&#xff0c;进行对比得出结果 主要有3个方法&#xff1a;主方法main(); 产生随机字符的方法generate(); 比较用户输入的字符与随机产生的字符的方法check&#xff08;&#xff09;&…

《Linux命令行与shell脚本编程大全 第3版》创建实用的脚本---10

以下为阅读《Linux命令行与shell脚本编程大全 第3版》的读书笔记&#xff0c;为了方便记录&#xff0c;特地与书的内容保持同步&#xff0c;特意做成一节一次随笔&#xff0c;特记录如下&#xff1a;转载于:https://www.cnblogs.com/guochaoxxl/p/7894995.html

python安装包找不到setup_如何安装没有setup.py的Python模块?

在系统上开始使用该代码的最简单的方法是&#xff1a;>将文件放入机器上的目录中,>将该目录的路径添加到您的PYTHONPATH步骤2可以从Python REPL完成如下&#xff1a;import syssys.path.append("/home/username/google_search")您的文件系统的外观示例&#xf…

Spring Batch中面向TaskletStep的处理

许多企业应用程序需要批处理才能每天处理数十亿笔交易。 必须处理这些大事务集&#xff0c;而不会出现性能问题。 Spring Batch是一个轻量级且强大的批处理框架&#xff0c;用于处理这些大数据集。 Spring Batch提供了“面向TaskletStep”和“面向块”的处理风格。 在本文中&a…

布局中常见的居中问题

说到布局除了浮动以及定位外还有一个不得不提的点&#xff0c;那就是居中&#xff0c;居中问题我们在网页布局当中经常遇到&#xff0c;那么以下就是分为两部分来讲&#xff0c;一部分是传统的居中&#xff0c;另一种则是flex居中&#xff0c;每个部分又通过分为水平垂直居中来…

unity json解析IPA后续

以前说到的&#xff0c;有很大的限制&#xff0c;只能解析简单的类&#xff0c;如果复杂的就会有问题&#xff0c;从老外哪里看到一片博客&#xff0c;是将类中的list 等复杂对象序列化&#xff0c; using UnityEngine; using System.Collections; using System.Collections.…

改善代码质量之内连临时变量

待增转载于:https://www.cnblogs.com/muyl/articles/6940896.html

python 矩阵元素相加_Numpy中元素级运算

标量与矩阵的运算:加法&#xff1a;values [1,2,3,4,5]values np.array(values) 5#现在 values 是包含 [6,7,8,9,10] 的一个 ndarray乘法&#xff1a;x np.multiply(some_array, 5)x some_array * 5矩阵与矩阵的运算:加法&#xff1a;对应元素相加&#xff0c;但形状必须相…