定义银行账户BankAccount类。 私有数据成员:余额balance(整型)。 公有成员方法:
时间: 2024-04-01 19:10:55 浏览: 458
定义一个类实现银行帐户的概念,包括的变量有
以下是 BankAccount 类的定义:
```python
class BankAccount:
def __init__(self, initial_balance=0):
self.balance = initial_balance
def deposit(self, amount):
self.balance += amount
def withdraw(self, amount):
if self.balance >= amount:
self.balance -= amount
return True
else:
return False
def get_balance(self):
return self.balance
```
说明:
- `__init__(self, initial_balance=0)` 是构造函数,用于初始化余额。
- `deposit(self, amount)` 是存款方法,将指定金额加入余额。
- `withdraw(self, amount)` 是取款方法,从余额中减去指定金额。如果余额不足,则返回 False。
- `get_balance(self)` 是查询余额方法,返回当前余额。
阅读全文