gpt4 book ai didi

java - 为什么使用if语句或assertj比较相同的对象值总是给出错误?

转载 作者:行者123 更新时间:2023-12-01 22:57:13 25 4
gpt4 key购买 nike

我使用另一个类减去了两个对象,但是当我返回新值并与预期值进行比较时,即使它是相同的值(我认为),它也会给出错误。

我尝试使用 if 语句但同样的事情。

   if(expected.current_Money.toString().equals(0.5)){
System.out.println(" if statmenet is working...");

}
else
{
System.out.println("failed");
}

导入第一个类(最好不要更改它)。

   import org.assertj.core.api.ThrowableAssert;
import org.junit.jupiter.api.Test;
import java.math.BigDecimal;

import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatThrownBy;

在同一个文件上,我们有这个方法。

@Test
void subtract_two_money_should_be_correct() {
Money oneDinar = new Money(BigDecimal.valueOf(1));
Money halfDinar = new Money(BigDecimal.valueOf(0.5));
System.out.println("Value of oneDinar
"+oneDinar.current_Money.toString());
System.out.println("Value of halfDinar
"+halfDinar.current_Money.toString());

//Money expected = oneDinar.subtract(halfDinar);
Money expected = new Money(BigDecimal.valueOf(0.5));

System.out.println("the Value of Expected
"+expected.current_Money.toString());

assertThat(expected).isEqualTo(new Money(BigDecimal.valueOf(0.5)));
}

减法的输出保存到一个对象中,并且内部变量的数据类型为 BigDecimal 。

在另一个文件上。进口

import java.math.BigDecimal;

我们有这些字段(第二个类中的变量。

    public static final Money HALF_DINAR = new 
Money(BigDecimal.valueOf(0.5));


public static final Money QUARTER_DINAR = new
Money(BigDecimal.valueOf(0.25)) ;
public static final Money DINAR = new Money(BigDecimal.valueOf(1));
public BigDecimal current_Money;

这是最后一件事,我们用来减法的方法。

  public Money subtract(Money SubtractMoney) {
System.out.println("TheValue of current money "+current_Money.toString());
Money current = new Money(current_Money);
System.out.println("TheValue of current "+current.current_Money.toString());

BigDecimal subtractedNumber = current_Money.subtract(new BigDecimal(String.valueOf(SubtractMoney.current_Money)));
System.out.println("TheValue of subtractedNumber"+subtractedNumber.toString());

Money newMoney = new Money(subtractedNumber);
System.out.println("TheValue of newMoney "+newMoney.current_Money.toString());

return newMoney ;
}

我期望输出将与该对象相同(数字相同,但即使我使用 if 语句或 Assertthat,它也会给我错误。

我期望输出是正确的并且没有错误。数字也是 0.5,这是目标。

输出:

Value of oneDinar 1
Value of halfDinar 0.5
TheValue of current money 1
TheValue of current 1
TheValue of subtractedNumber0.5
TheValue of newMoney 0.5
the Value of Expected 0.5

org.opentest4j.AssertionFailedError:
Expecting:
<com.progressoft.induction.Money@123f1134>
to be equal to:
<com.progressoft.induction.Money@7d68ef40>
but was not.
Expected :com.progressoft.induction.Money@7d68ef40
Actual :com.progressoft.induction.Money@123f1134

最佳答案

AssertJ 的 isEqualTo(...) 函数在内部使用对象 equals 方法来确定相等性。因此,您应该重写 Money 类中的 equals() 方法。然后,您可以通过内容而不是对象标识来比较实例,即如果值相同,则实例被视为相等。

if (expected.current_Money.toString().equals(0.5)) 语句中的比较不起作用,因为 expected.current_Money.toString() 部分是一个字符串,0.5 会自动装箱为 Double 对象。因此,由于类不同,等于比较失败。

旁注:每当您重写 equals() 方法时,您还需要重写 hashcode() 函数以匹配 >equals() 函数。否则,许多类(例如 HashMap)可能会出现错误,因为它们假设 equals 和 hashcode 基于相同的假设工作。

关于java - 为什么使用if语句或assertj比较相同的对象值总是给出错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58434200/

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