- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在编写一个类 Vec2D
,表示一个二维 vector 。我将 x
和 y
存储在 double
中。
当要求生成 equals(Object obj
和 hashCode()
时,eclipse 生成了这个:
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
long temp;
temp = Double.doubleToLongBits(x);
result = prime * result + (int) (temp ^ (temp >>> 32));
temp = Double.doubleToLongBits(y);
result = prime * result + (int) (temp ^ (temp >>> 32));
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Vec2D other = (Vec2D) obj;
if (Double.doubleToLongBits(x) != Double.doubleToLongBits(other.x))
return false;
if (Double.doubleToLongBits(y) != Double.doubleToLongBits(other.y))
return false;
return true;
}
在这种情况下,Double.doubleToLongBits(x)
的意义是什么?我不能简单地写 x != other.x
吗?
最佳答案
简短回答:Eclipse 使用 Double.doubleToLongBits因为这就是Double.equals做:
The result is
true
if and only if the argument is notnull
and is a Double object that represents adoubl
e that has the same value as thedouble
represented by this object. For this purpose, twodouble
values are considered to be the same if and only if the methoddoubleToLongBits(double)
returns the identicallong
value when applied to each.
长答案:JLS 指定了 Double.equals 和 == 之间的一些差异。对于 JLS 4.2.3 中指定的一个差异和 JLS 15.21.1 :
Positive zero and negative zero compare equal; thus the result of the expression
0.0==-0.0
istrue
and the result of0.0>-0.0
isfalse
. But other operations can distinguish positive and negative zero; for example,1.0/0.0
has the value positive infinity, while the value of1.0/-0.0
is negative infinity.
另一个关于 NaN
的问题:
If either operand is NaN, then the result of
==
isfalse
but the result of!=
istrue
.Indeed, the test
x!=x
istrue
if and only if the value of x is NaN.
如您所见,两个 double 值可以与 ==
进行比较,但在数学和哈希表中使用时实际上对应于不同的行为。因此,在编写生成的相等方法时,Eclipse 假设只有当且仅当可以对它们执行的所有操作都相同时,或者(等效地)如果它们被自动装箱并与它们的 等值进行比较,两个 double 才相等
方法。如果在 double
和 Double
之间切换,这一点尤其重要——如果相等属性在那里有所不同,那将是特别出乎意料的。
当然,您可以自由地偏离该假设:无论这是否是一个好主意,您都可以将特殊情况分配给许多可能的 NaN 表示中的任何一种,在这种情况下 Double.doubleToRawLongBits()
会更好地匹配您的 equals
和 hashCode
方法。出于同样的原因,您的用例可能会将具有 +0.0 和 -0.0 的对象视为等效对象,并保证不可能出现 NaN 值,在这种情况下,原始 ==
比较可能对 更有效等于
(但此时为 hashCode
模拟相同的标准变得困难)。
关于java - Double.doubleToLongBits(x) 的含义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23438530/
下面的代码有效,我觉得double(double)和double(*)(double)没有区别,square和 &square,我说得对吗? #include double square(doubl
我知道我的作业很草率,这是我在这门课上的第 4 次作业。任何帮助将不胜感激,谢谢。 double getPrincipal(0); double getRate(0); double getYe
我遇到了那个错误,当我使用类时,我在使用函数指针时遇到了这个错误。我的函数'ope'函数我该如何解决 evaluator::function(){ double (*ope) (dou
问题://故事从哪里开始 Graphics 类型中的方法 drawLine(int, int, int, int) 不适用于参数 (double, double, double, double) g.
我有一张 map> m1 形式的 map .我可以将其复制到 map m2 形式的 map 吗?这样键是相同的,并且 m2 中的值是 get(m1->second) 不使用循环?谢谢! 最佳答案 这样
有没有办法获取vector> 的“.first”和“.second”的连续内存? ?我的意思是: void func(int N, double* x, double* y) { for (i
我正在尝试将自定义 lambda 传递给需要函数指针的函数(更准确地说是 zero 中的 Brent library 函数)。 我的想法是,我将使用参数创建一次 lambda,然后用多个值对其求值 x
这是一个很简单的问题,让我很困惑。 我收到一个源文件的以下错误,但另一个没有: 4 src/Source2.cpp:1466: error: no matching function for cal
struct CalculatorBrain { private var accumulator: Double? func changeSign(operand: Double) -
在我正在进行的项目中,我尝试使用 curlpp库来发出一个简单的 html GET 请求。当我将 cpp 文件传递给 g++ 时,出现以下错误: /usr/local/include/curlpp
不使用double就能获得quadruple精度超过16位的数字吗?如果可能的话,这取决于编译器还是其他?因为我知道有人说他使用double精度,并且具有22位精度。 最佳答案 数据类型double
我正在寻找有关特斯拉 GPU 中硬件如何实现 double 的信息。我读到,两个流处理器正在处理单个 double 值,但我没有找到 nvidia 的任何官方论文。 提前致谢。聚苯硫醚为什么大多数 G
这个问题在这里已经有了答案: Passing capturing lambda as function pointer (10 个答案) 关闭 2 年前。 我有这个错误 error: cannot
情况:我有一个元组列表,其中添加了一个元组: List> list = new List>(); list .Add(new Tuple(2.2, 6.6)); 一切似乎都还好。但是......在 D
我有一个 JList,里面有一堆名字,还有一个包含这些名字值的数组 final Double[] filmcost = { 5.00, 5.50, 7.00, 6.00, 5.00 }; 我想做的是,
我试图找出牛顿法来求方程的根。这个错误出来了,我无法处理。 double fn(double n){ return sin(n)+log(n)-1; } double f1n(double n
我有一个 junit 测试断言两个 Double 对象,具有以下内容: Assert.assertEquals(Double expected, Double result); 这很好,然后我决定将其
我正在尝试引入部分数据文件来填充数组,用户尝试了三次输入正确的数据文件名。我一再遇到这些错误。我知道像 arr 这样的数组只是一个指向内存块的指针。 #include #include #incl
我正在尝试完成复习题(为即将到来的编程决赛),但是,我无法解决这个问题,因为我不断收到错误(标题)。正如预期的那样,我将发布问题和我尝试的解决方案。 问题: 给定以下函数定义:void swap(do
任何人都知道如何实现这一目标。我已经尝试了通常的公式,但我只得到正数 Double.NEGATIVE_INFINITY) return d; } } 这将以相同的概率
我是一名优秀的程序员,十分优秀!