上述答案中self.cents无法使用
时间: 2024-02-29 22:53:29 浏览: 71
2cents worth ppt模板.ppt
非常抱歉,我犯了一个错误!我在 Coin 类中使用了类变量 `cents`,但是在 `worth` 方法中没有通过类名来引用它,而是使用了 `self.cents`,这是错误的。因为 `cents` 是类变量,应该使用 `Coin.cents` 来引用它。
以下是已更正的代码实现:
```python
import datetime
class Mint:
current_year = datetime.datetime.now().year
def __init__(self, year):
self.year_stamp = year
def update(self):
self.year_stamp = self.current_year
def create(self, coin_class):
return coin_class(self.year_stamp)
class Coin:
cents = None
def __init__(self, year):
self.year = year
def worth(self):
age = Mint.current_year - self.year
return Coin.cents + (max(0, age - 50) * 1)
class Quarter(Coin):
cents = 25
class Dime(Coin):
cents = 10
class Nickel(Coin):
cents = 5
class Penny(Coin):
cents = 1
```
现在,我们可以使用 `Coin.cents` 来引用硬币类的 `cents` 类变量。现在,这个实现应该可以正常工作了。
阅读全文