-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBankAccount.cpp
More file actions
123 lines (94 loc) · 2.37 KB
/
BankAccount.cpp
File metadata and controls
123 lines (94 loc) · 2.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
// ===========================================================================
// BankAccount.cpp
// ===========================================================================
#include "BankAccount.h"
// initialization of static member variable
int BankAccount::s_NextAccountNumber = 10'000;
// c'tor
BankAccount::BankAccount(double balance) : m_number(s_NextAccountNumber)
{
// move to next available account number
s_NextAccountNumber++;
m_balance = balance;
m_rate = 0.0;
}
BankAccount::BankAccount() : BankAccount(0.0) {}
// getter / setter
int BankAccount::getAccountNumber() const
{
return m_number;
}
double BankAccount::getBalance() const
{
return m_balance;
}
double BankAccount::getInterestRate() const
{
return m_rate;
}
void BankAccount::setInterestRate(double rate)
{
m_rate = rate;
}
// public interface
void BankAccount::deposit(double amount)
{
m_balance += amount;
}
void BankAccount::withdraw(double amount)
{
if (m_balance < amount)
return;
m_balance -= amount;
}
bool BankAccount::equals(const BankAccount& other) const
{
if (m_balance == other.m_balance) {
return true;
}
else {
return false;
}
}
void BankAccount::updateInterest(int days)
{
double interest = (days * m_rate * m_balance) / 365.0 / 100.0;
m_balance += interest;
}
void BankAccount::print() const
{
std::cout << "BankAccount Nr. " << m_number << ":";
std::cout << " Balance=" << m_balance << "." << std::endl;
}
// operators
bool BankAccount::operator== (const BankAccount& other) {
if (m_balance == other.m_balance) {
return true;
}
else {
return false;
}
}
bool BankAccount::operator!= (const BankAccount& other) {
return ! (*this == other);
}
bool BankAccount::operator< (const BankAccount& other) {
if (m_balance < other.m_balance) {
return true;
}
else {
return false;
}
}
bool BankAccount::operator<= (const BankAccount& other) {
return (*this < other || *this == other);
}
bool BankAccount::operator> (const BankAccount& other) {
return ! (*this <= other);
}
bool BankAccount::operator>= (const BankAccount& other) {
return !(*this < other);
}
// ===========================================================================
// End-of-File
// ===========================================================================