gpt4 book ai didi

java - 覆盖哈希码和等于的问题

转载 作者:行者123 更新时间:2023-11-29 05:59:26 25 4
gpt4 key购买 nike

我想创建一个将字符串列表作为输入的类。我想覆盖此类的 hashcode 和 equals,以便当发送的字符串列表相等时,无论顺序如何,此类将始终返回 true。

代码如下:

public final class TableValues
{
private final String[] tableValue;

TableValues(final String[] values)
{
this.tableValue = values;
}

/**
* @see java.lang.Object#hashCode()
*/
@Override
public int hashCode()
{
final int prime = 31;
int result = 1;
result = prime * result + Arrays.hashCode(tableValue);
return result;
}

/**
* @see java.lang.Object#equals(java.lang.Object)
*/
@Override
public boolean equals(final Object obj)
{
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final TableValues other = (TableValues) obj;
if (!Arrays.equals(tableValue, other.tableValue))
return false;
return true;
}
}

但是当我这样做的时候:

final String[] str1 = {"A", "B", "C"};
final String[] str2 = {"B", "C", "A"};
final TableValues tab1 = new TableValues(str1);
final TableValues tab2 = new TableValues(str2);
if (tab1.equals(tab2))
{
System.out.println("Equal");
}
else
{
System.out.println("Not Equal");
}

它总是打印 Not Equal。这里有什么问题?

最佳答案

两个 TableValues 实例不相等,因为数组不相等。这是因为数组中元素的顺序很重要。如果您想要不区分顺序的匹配,您必须将其添加到您的代码中,以便它考虑两个内容相同但顺序不同的数组,因为它们相同使用字符串的 Set如果顺序不重要。

关于java - 覆盖哈希码和等于的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10710577/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com