HashCode 使用产生Utils类

2024-08-21 00:38
文章标签 使用 产生 hashcode utils

本文主要是介绍HashCode 使用产生Utils类,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

hashCode 和equals 这两个方法一直是使用的焦点!我们在使用比较对象的使用很多情况下都要使用这个,随便使用将造成很多困扰,详情见-effectjava
  1. 无意中发现一个写的还不错的utils 类,专门为了这个二创造的。
    以17为底数,37为乘
package org.apache.commons.httpclient.util;public class LangUtils {public static final int HASH_SEED = 17;public static final int HASH_OFFSET = 37;private LangUtils() {super();}public static int hashCode(final int seed, final int hashcode) {return seed * HASH_OFFSET + hashcode;}public static int hashCode(final int seed, final Object obj) {return hashCode(seed, obj != null ? obj.hashCode() : 0);}public static int hashCode(final int seed, final boolean b) {return hashCode(seed, b ? 1 : 0);}public static boolean equals(final Object obj1, final Object obj2) {return obj1 == null ? obj2 == null : obj1.equals(obj2);}}
  1. httpPost这个类很好的说明在使用equlas 和 hashcode
/** $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//httpclient/src/java/org/apache/commons/httpclient/HttpHost.java,v 1.3 2005/01/14 21:16:40 olegk Exp $* $Revision: 510587 $* $Date: 2007-02-22 17:56:08 +0100 (Thu, 22 Feb 2007) $** ====================================================================**  Licensed to the Apache Software Foundation (ASF) under one or more*  contributor license agreements.  See the NOTICE file distributed with*  this work for additional information regarding copyright ownership.*  The ASF licenses this file to You under the Apache License, Version 2.0*  (the "License"); you may not use this file except in compliance with*  the License.  You may obtain a copy of the License at**      http://www.apache.org/licenses/LICENSE-2.0**  Unless required by applicable law or agreed to in writing, software*  distributed under the License is distributed on an "AS IS" BASIS,*  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.*  See the License for the specific language governing permissions and*  limitations under the License.* ====================================================================** This software consists of voluntary contributions made by many* individuals on behalf of the Apache Software Foundation.  For more* information on the Apache Software Foundation, please see* <http://www.apache.org/>.**/package org.apache.commons.httpclient;import org.apache.commons.httpclient.protocol.Protocol;
import org.apache.commons.httpclient.util.LangUtils;/*** Holds all of the variables needed to describe an HTTP connection to a host. This includes * remote host, port and protocol.* * @author <a href="mailto:becke@u.washington.edu">Michael Becke</a>* @author <a href="mailto:mbowler@GargoyleSoftware.com">Mike Bowler</a>* @author <a href="mailto:oleg@ural.ru">Oleg Kalnichevski</a>* @author Laura Werner* * @since 3.0 */
public class HttpHost implements Cloneable {/** The host to use. */private String hostname = null;/** The port to use. */private int port = -1;/** The protocol */private Protocol protocol = null;/*** Constructor for HttpHost.*   * @param hostname the hostname (IP or DNS name). Can be <code>null</code>.* @param port the port. Value <code>-1</code> can be used to set default protocol port* @param protocol the protocol. Value <code>null</code> can be used to set default protocol*/public HttpHost(final String hostname, int port, final Protocol protocol) {super();if (hostname == null) {throw new IllegalArgumentException("Host name may not be null");}if (protocol == null) {throw new IllegalArgumentException("Protocol may not be null");}this.hostname = hostname;this.protocol = protocol;if (port >= 0) {this.port = port;} else {this.port = this.protocol.getDefaultPort();}}/*** Constructor for HttpHost.*   * @param hostname the hostname (IP or DNS name). Can be <code>null</code>.* @param port the port. Value <code>-1</code> can be used to set default protocol port*/public HttpHost(final String hostname, int port) {this(hostname, port, Protocol.getProtocol("http"));}/*** Constructor for HttpHost.*   * @param hostname the hostname (IP or DNS name). Can be <code>null</code>.*/public HttpHost(final String hostname) {this(hostname, -1, Protocol.getProtocol("http"));}/*** URI constructor for HttpHost.*   * @param uri the URI.*/public  HttpHost(final URI uri) throws URIException {this(uri.getHost(), uri.getPort(), Protocol.getProtocol(uri.getScheme()));}/*** Copy constructor for HttpHost* * @param httphost the HTTP host to copy details from*/public HttpHost (final HttpHost httphost) {super();init(httphost);}private void init(final HttpHost httphost) {this.hostname = httphost.hostname;this.port = httphost.port;this.protocol = httphost.protocol;}/*** @throws CloneNotSupportedException * @see java.lang.Object#clone()*/public Object clone() throws CloneNotSupportedException {HttpHost copy = (HttpHost) super.clone();copy.init(this);return copy;}    /*** Returns the host name (IP or DNS name).* * @return the host name (IP or DNS name), or <code>null</code> if not set*/public String getHostName() {return this.hostname;}/*** Returns the port.* * @return the host port, or <code>-1</code> if not set*/public int getPort() {return this.port;}/*** Returns the protocol.* @return The protocol.*/public Protocol getProtocol() {return this.protocol;}/*** Return the host uri.* * @return The host uri.*/public String toURI() {StringBuffer buffer = new StringBuffer(50);        buffer.append(this.protocol.getScheme());buffer.append("://");buffer.append(this.hostname);if (this.port != this.protocol.getDefaultPort()) {buffer.append(':');buffer.append(this.port);}return buffer.toString();}/*** @see java.lang.Object#toString()*/public String toString() {StringBuffer buffer = new StringBuffer(50);        buffer.append(toURI());return buffer.toString();}    /*** @see java.lang.Object#equals(java.lang.Object)*/public boolean equals(final Object o) {if (o instanceof HttpHost) {// shortcut if we're comparing with ourselvesif (o == this) { return true;}HttpHost that = (HttpHost) o;if (!this.hostname.equalsIgnoreCase(that.hostname)) {return false;}if (this.port != that.port) {return false;}if (!this.protocol.equals(that.protocol)) {return false;}// everything matchesreturn true;} else {return false;}}/*** @see java.lang.Object#hashCode()*/public int hashCode() {int hash = LangUtils.HASH_SEED;hash = LangUtils.hashCode(hash, this.hostname);hash = LangUtils.hashCode(hash, this.port);hash = LangUtils.hashCode(hash, this.protocol);return hash;}}

这篇关于HashCode 使用产生Utils类的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1091625

相关文章

Spring Cloud之注册中心Nacos的使用详解

《SpringCloud之注册中心Nacos的使用详解》本文介绍SpringCloudAlibaba中的Nacos组件,对比了Nacos与Eureka的区别,展示了如何在项目中引入SpringClo... 目录Naacos服务注册/服务发现引⼊Spring Cloud Alibaba依赖引入Naco编程s依

Java springBoot初步使用websocket的代码示例

《JavaspringBoot初步使用websocket的代码示例》:本文主要介绍JavaspringBoot初步使用websocket的相关资料,WebSocket是一种实现实时双向通信的协... 目录一、什么是websocket二、依赖坐标地址1.springBoot父级依赖2.springBoot依赖

Java使用Mail构建邮件功能的完整指南

《Java使用Mail构建邮件功能的完整指南》JavaMailAPI是一个功能强大的工具,它可以帮助开发者轻松实现邮件的发送与接收功能,本文将介绍如何使用JavaMail发送和接收邮件,希望对大家有所... 目录1、简述2、主要特点3、发送样例3.1 发送纯文本邮件3.2 发送 html 邮件3.3 发送带

使用DeepSeek搭建个人知识库(在笔记本电脑上)

《使用DeepSeek搭建个人知识库(在笔记本电脑上)》本文介绍了如何在笔记本电脑上使用DeepSeek和开源工具搭建个人知识库,通过安装DeepSeek和RAGFlow,并使用CherryStudi... 目录部署环境软件清单安装DeepSeek安装Cherry Studio安装RAGFlow设置知识库总

Python FastAPI入门安装使用

《PythonFastAPI入门安装使用》FastAPI是一个现代、快速的PythonWeb框架,用于构建API,它基于Python3.6+的类型提示特性,使得代码更加简洁且易于绶护,这篇文章主要介... 目录第一节:FastAPI入门一、FastAPI框架介绍什么是ASGI服务(WSGI)二、FastAP

Spring-AOP-ProceedingJoinPoint的使用详解

《Spring-AOP-ProceedingJoinPoint的使用详解》:本文主要介绍Spring-AOP-ProceedingJoinPoint的使用方式,具有很好的参考价值,希望对大家有所帮... 目录ProceedingJoinPoijsnt简介获取环绕通知方法的相关信息1.proceed()2.g

Maven pom.xml文件中build,plugin标签的使用小结

《Mavenpom.xml文件中build,plugin标签的使用小结》本文主要介绍了Mavenpom.xml文件中build,plugin标签的使用小结,文中通过示例代码介绍的非常详细,对大家的学... 目录<build> 标签Plugins插件<build> 标签<build> 标签是 pom.XML

JAVA虚拟机中 -D, -X, -XX ,-server参数使用

《JAVA虚拟机中-D,-X,-XX,-server参数使用》本文主要介绍了JAVA虚拟机中-D,-X,-XX,-server参数使用,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有... 目录一、-D参数二、-X参数三、-XX参数总结:在Java开发过程中,对Java虚拟机(JVM)的启动参数进

Java中使用注解校验手机号格式的详细指南

《Java中使用注解校验手机号格式的详细指南》在现代的Web应用开发中,数据校验是一个非常重要的环节,本文将详细介绍如何在Java中使用注解对手机号格式进行校验,感兴趣的小伙伴可以了解下... 目录1. 引言2. 数据校验的重要性3. Java中的数据校验框架4. 使用注解校验手机号格式4.1 @NotBl

Python使用DeepSeek进行联网搜索功能详解

《Python使用DeepSeek进行联网搜索功能详解》Python作为一种非常流行的编程语言,结合DeepSeek这一高性能的深度学习工具包,可以方便地处理各种深度学习任务,本文将介绍一下如何使用P... 目录一、环境准备与依赖安装二、DeepSeek简介三、联网搜索与数据集准备四、实践示例:图像分类1.