gpt4 book ai didi

php - Dollar 类的对象无法转换为 int

转载 作者:可可西里 更新时间:2023-11-01 12:52:35 25 4
gpt4 key购买 nike

我正在阅读作者 Kent Beck 所著的名为“示例测试驱动开发”的书。

我正在尝试在 php 中编写类似的函数,但不理解这些步骤。

原始函数:

测试函数:

public void testEquality() {
assertTrue(new Dollar(5).equals(new Dollar(5)));
assertFalse(new Dollar(5).equals(new Dollar(6)));
}

类函数:

public boolean equals(Object object) {
Dollar dollar = (Dollar) object;
return amount == dollar.amount;
}

我的代码:

测试函数:

public function setup() {
$this->dollarFive = new Dollar(5);
}

public function testEquality() {
$this->assertTrue($this->dollarFive->equals(new Dollar(5)));
}

类函数:

class Dollar
{
public function __construct($amount) {
$this->amount = (int) $amount;
}

public function equals(Dollar $object) {
$this->Object = $object;
return $this->amount == $this->Object;
}
}

在执行测试用例时出现以下错误。

Object of class Dollar could not be converted to int

在这方面需要一些帮助。我该如何解决这个问题?

最佳答案

return $this->amount == $this->Object;

$this->amount 是一个整数,$this->Object 不是一个整数。你试图相互比较,因此你会得到

Object of class Dollar could not be converted to int

你可能是说

return $this->amount == $this->Object->amount;

不过,你们类也有一些奇怪的地方

class Dollar {
public $amount = 0; // <-- forgotten
public function __construct($amount) {
$this->amount = (int) $amount;
}

public function equals(Dollar $object) {
$this->Object = $object; // <--- ?!?
return $this->amount == $this->Object;
}
}

你可能只想要

   public function equals(Dollar $object) {
return $this->amount == $object->amount;
}

关于php - Dollar 类的对象无法转换为 int,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9599776/

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