diff options
Diffstat (limited to 'java/05-simple-objects/Account.java')
| -rw-r--r-- | java/05-simple-objects/Account.java | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/java/05-simple-objects/Account.java b/java/05-simple-objects/Account.java new file mode 100644 index 0000000..42ccec7 --- /dev/null +++ b/java/05-simple-objects/Account.java @@ -0,0 +1,25 @@ +public class Account { + + /* Declaring fields - represent state */ + + int accountNumber; + double balance; + + + /* Declaring methods - represent operations */ + + public void withdraw(double amount) { + if (balance >= amount) { + balance = balance - amount; + } + } + + public void deposit(double amount) { + balance += amount; + } + + public double getBalance() { + return balance; + } + +} |
