- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在这一点上,我有一段时间陷入困境,我有一个带有 4 个字段、3 个对象数组列表和 1 个字符串数组列表的类(A)。我相应地重写了 equals 和 hashcode 方法,我创建了 A 类的多个对象并添加到 hashmap 中以实现某些逻辑。但是对于具有相同值的随机对象,我得到了不同的哈希码值,因此当我尝试 hashmap.get(object) 时随机失败,感谢任何帮助,下面是类。
import java.util.ArrayList;
import java.util.List;
import com.makinglifeeasy4u.util.AddressBean;
import com.makinglifeeasy4u.util.EmailBean;
import com.makinglifeeasy4u.util.PhoneBean;
public class ContactsMainBean {
String contact_id;
String name;
private List<PhoneBean> phonelist = new ArrayList<PhoneBean>();
private List<EmailBean> emaillist = new ArrayList<EmailBean>();
private List<AddressBean> addressbean = new ArrayList<AddressBean>();
private List<String> notesList = new ArrayList<String>();
public String getContact_id() {
return contact_id;
}
public void setContact_id(String contact_id) {
this.contact_id = contact_id;
}
public List<String> getNotesList() {
return notesList;
}
public void setNotesList(List<String> notesList) {
if (this.notesList != null && this.notesList.size() > 0) {
this.notesList.addAll(notesList);
} else {
this.notesList = notesList;
}
// this.notesList = notesList;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public List<PhoneBean> getPhonelist() {
return phonelist;
}
public void setPhonelist(List<PhoneBean> phonelist) {
if (this.phonelist != null && this.phonelist.size() > 0) {
this.phonelist.addAll(phonelist);
} else {
this.phonelist = phonelist;
}
}
public List<EmailBean> getEmaillist() {
return emaillist;
}
public void setEmaillist(List<EmailBean> emaillist) {
if (this.emaillist != null && this.emaillist.size() > 0) {
this.emaillist.addAll(emaillist);
} else {
this.emaillist = emaillist;
}
// this.emaillist = emaillist;
}
public List<AddressBean> getAddressbean() {
return addressbean;
}
/*
* (non-Javadoc)
*
* @see java.lang.Object#hashCode()
*/
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result
+ ((addressbean == null) ? 0 : addressbean.hashCode());
result = prime * result
+ ((emaillist == null) ? 0 : emaillist.hashCode());
result = prime * result + ((name == null) ? 0 : name.hashCode());
result = prime * result
+ ((notesList == null) ? 0 : notesList.hashCode());
result = prime * result
+ ((phonelist == null) ? 0 : phonelist.hashCode());
return result;
}
/*
* (non-Javadoc)
*
* @see java.lang.Object#equals(java.lang.Object)
*/
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof ContactsMainBean)) {
return false;
}
ContactsMainBean other = (ContactsMainBean) obj;
if (addressbean == null) {
if (other.addressbean != null) {
return false;
}
} else if (!addressbean.equals(other.addressbean)) {
return false;
}
if (emaillist == null) {
if (other.emaillist != null) {
return false;
}
} else if (!emaillist.equals(other.emaillist)) {
return false;
}
if (name == null) {
if (other.name != null) {
return false;
}
} else if (!name.equals(other.name)) {
return false;
}
if (notesList == null) {
if (other.notesList != null) {
return false;
}
} else if (!notesList.equals(other.notesList)) {
return false;
}
if (phonelist == null) {
if (other.phonelist != null) {
return false;
}
} else if (!phonelist.equals(other.phonelist)) {
return false;
}
return true;
}
public void setAddressbean(List<AddressBean> addressbean) {
if (this.addressbean != null && this.addressbean.size() > 0) {
this.addressbean.addAll(addressbean);
} else {
this.addressbean = addressbean;
}
// this.addressbean = addressbean;
}
@Override
public String toString() {
// TODO Auto-generated method stub
// return getName()+":"+getPhonelist();
return getName() + ":" + getPhonelist() + ":" + getEmaillist() + ":"
+ getAddressbean() + ":" + getNotesList() + ":"
+ name.hashCode() + ":" + phonelist.hashCode() + ":"
+ emaillist.hashCode() + ":" + notesList.hashCode();
}
}
我已经重写了phonebean、emailbean、addressbean 中的hashcode 和equals 方法。
添加beanobject代码:
public class PhoneBean {
String type;
String number;
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getNumber() {
return number;
}
public void setNumber(String number) {
this.number = number;
}
/* (non-Javadoc)
* @see java.lang.Object#hashCode()
*/
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((number == null) ? 0 : number.hashCode());
//result = prime * result + ((type == null) ? 0 : type.hashCode());
return result;
}
/* (non-Javadoc)
* @see java.lang.Object#equals(java.lang.Object)
*/
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
PhoneBean other = (PhoneBean) obj;
if (number == null) {
if (other.number != null)
return false;
} else if (!number.equals(other.number))
return false;
// if (type == null) {
// if (other.type != null)
// return false;
// } else if (!type.equals(other.type))
// return false;
return true;
}
@Override
public String toString() {
// TODO Auto-generated method stub
return getNumber();
}
}
电子邮件 bean:
public class EmailBean {
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getEmailType() {
return emailType;
}
public void setEmailType(String emailType) {
this.emailType = emailType;
}
String email;
String emailType;
/* (non-Javadoc)
* @see java.lang.Object#hashCode()
*/
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((email == null) ? 0 : email.hashCode());
result = prime * result
+ ((emailType == null) ? 0 : emailType.hashCode());
return result;
}
/* (non-Javadoc)
* @see java.lang.Object#equals(java.lang.Object)
*/
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
EmailBean other = (EmailBean) obj;
if (email == null) {
if (other.email != null)
return false;
} else if (!email.equals(other.email))
return false;
if (emailType == null) {
if (other.emailType != null)
return false;
} else if (!emailType.equals(other.emailType))
return false;
return true;
}
}
地址bean:
public class AddressBean {
String poBox;
String street;
String city;
String state;
String postalCode;
String country;
String addresstype;
public String getPoBox() {
return poBox;
}
public void setPoBox(String poBox) {
this.poBox = poBox;
}
public String getStreet() {
return street;
}
public void setStreet(String street) {
this.street = street;
}
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
public String getState() {
return state;
}
public void setState(String state) {
this.state = state;
}
public String getPostalCode() {
return postalCode;
}
public void setPostalCode(String postalCode) {
this.postalCode = postalCode;
}
public String getCountry() {
return country;
}
public void setCountry(String country) {
this.country = country;
}
public String getAddresstype() {
return addresstype;
}
public void setAddresstype(String addresstype) {
this.addresstype = addresstype;
}
/* (non-Javadoc)
* @see java.lang.Object#hashCode()
*/
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result
+ ((addresstype == null) ? 0 : addresstype.hashCode());
result = prime * result + ((city == null) ? 0 : city.hashCode());
result = prime * result + ((country == null) ? 0 : country.hashCode());
result = prime * result + ((poBox == null) ? 0 : poBox.hashCode());
result = prime * result
+ ((postalCode == null) ? 0 : postalCode.hashCode());
result = prime * result + ((state == null) ? 0 : state.hashCode());
result = prime * result + ((street == null) ? 0 : street.hashCode());
return result;
}
/* (non-Javadoc)
* @see java.lang.Object#equals(java.lang.Object)
*/
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
AddressBean other = (AddressBean) obj;
if (addresstype == null) {
if (other.addresstype != null)
return false;
} else if (!addresstype.equals(other.addresstype))
return false;
if (city == null) {
if (other.city != null)
return false;
} else if (!city.equals(other.city))
return false;
if (country == null) {
if (other.country != null)
return false;
} else if (!country.equals(other.country))
return false;
if (poBox == null) {
if (other.poBox != null)
return false;
} else if (!poBox.equals(other.poBox))
return false;
if (postalCode == null) {
if (other.postalCode != null)
return false;
} else if (!postalCode.equals(other.postalCode))
return false;
if (state == null) {
if (other.state != null)
return false;
} else if (!state.equals(other.state))
return false;
if (street == null) {
if (other.street != null)
return false;
} else if (!street.equals(other.street))
return false;
return true;
}
}
奇怪的是,如果我在类的 tostring() 中输出下面的代码。我得到以下结果
return getName() + ":" + getPhonelist() + ":" + getEmaillist() + ":"
+ getAddressbean() + ":" + getNotesList() + ":"
+ name.hashCode() + ":" + phonelist.hashCode() + ":"
+ emaillist.hashCode() + ":" + notesList.hashCode();
结果:
12-12 00:25:20.133: I/System.out(2317): *Dial Airtel:[321]:[]:[]:[]:346070743:50672:1:1
12-12 00:25:20.133: I/System.out(2317): *Dial Airtel:[321]:[]:[]:[]:346070743:50672:1:1
12-12 00:25:20.143: I/System.out(2317): *Dial Airtel:[321]:[]:[]:[]:346070743:50672:1:1
12-12 00:25:20.143: I/System.out(2317): *Dial Airtel:[321]:[]:[]:[]:346070743:50672:1:31
最佳答案
不要构建自己的哈希和等于,请考虑使用(来自 org.apache.commons.lang.builder)EqualsBuilder 和 HashCodeBuilder 类,它们会做正确的事情。
例如,您可以使用:
public int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
}
关于java - 使用对象列表作为字段覆盖类的哈希码方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20527092/
我想了解 Ruby 方法 methods() 是如何工作的。 我尝试使用“ruby 方法”在 Google 上搜索,但这不是我需要的。 我也看过 ruby-doc.org,但我没有找到这种方法。
Test 方法 对指定的字符串执行一个正则表达式搜索,并返回一个 Boolean 值指示是否找到匹配的模式。 object.Test(string) 参数 object 必选项。总是一个
Replace 方法 替换在正则表达式查找中找到的文本。 object.Replace(string1, string2) 参数 object 必选项。总是一个 RegExp 对象的名称。
Raise 方法 生成运行时错误 object.Raise(number, source, description, helpfile, helpcontext) 参数 object 应为
Execute 方法 对指定的字符串执行正则表达式搜索。 object.Execute(string) 参数 object 必选项。总是一个 RegExp 对象的名称。 string
Clear 方法 清除 Err 对象的所有属性设置。 object.Clear object 应为 Err 对象的名称。 说明 在错误处理后,使用 Clear 显式地清除 Err 对象。此
CopyFile 方法 将一个或多个文件从某位置复制到另一位置。 object.CopyFile source, destination[, overwrite] 参数 object 必选
Copy 方法 将指定的文件或文件夹从某位置复制到另一位置。 object.Copy destination[, overwrite] 参数 object 必选项。应为 File 或 F
Close 方法 关闭打开的 TextStream 文件。 object.Close object 应为 TextStream 对象的名称。 说明 下面例子举例说明如何使用 Close 方
BuildPath 方法 向现有路径后添加名称。 object.BuildPath(path, name) 参数 object 必选项。应为 FileSystemObject 对象的名称
GetFolder 方法 返回与指定的路径中某文件夹相应的 Folder 对象。 object.GetFolder(folderspec) 参数 object 必选项。应为 FileSy
GetFileName 方法 返回指定路径(不是指定驱动器路径部分)的最后一个文件或文件夹。 object.GetFileName(pathspec) 参数 object 必选项。应为
GetFile 方法 返回与指定路径中某文件相应的 File 对象。 object.GetFile(filespec) 参数 object 必选项。应为 FileSystemObject
GetExtensionName 方法 返回字符串,该字符串包含路径最后一个组成部分的扩展名。 object.GetExtensionName(path) 参数 object 必选项。应
GetDriveName 方法 返回包含指定路径中驱动器名的字符串。 object.GetDriveName(path) 参数 object 必选项。应为 FileSystemObjec
GetDrive 方法 返回与指定的路径中驱动器相对应的 Drive 对象。 object.GetDrive drivespec 参数 object 必选项。应为 FileSystemO
GetBaseName 方法 返回字符串,其中包含文件的基本名 (不带扩展名), 或者提供的路径说明中的文件夹。 object.GetBaseName(path) 参数 object 必
GetAbsolutePathName 方法 从提供的指定路径中返回完整且含义明确的路径。 object.GetAbsolutePathName(pathspec) 参数 object
FolderExists 方法 如果指定的文件夹存在,则返回 True;否则返回 False。 object.FolderExists(folderspec) 参数 object 必选项
FileExists 方法 如果指定的文件存在返回 True;否则返回 False。 object.FileExists(filespec) 参数 object 必选项。应为 FileS
我是一名优秀的程序员,十分优秀!