Inheritance, Overloading and Overriding: Recall
Inheritance, Overloading and Overriding: Recall
● Recall
– with inheritance the behavior and data associated with
the child classes are always an extension of the behavior
and data associated with the parent class
● In a child class you can
– redefine a method's implementation (override)
● a method that is inherited by the parent, and the child
class wants to change its behavior
– define new methods with the same method name but different
arguments (overload)
● different tasks are performed by each method but they
share the same method name
1
The Bank Account example
● Accounts must have
– current balance
– name of account holder
– a withdraw method
– a deposit method
● Current accounts
– have a maximum withdraw amount
● you cannot withdraw more than $200 in one transaction
● Savings accounts
– have a minimum balance that they need to maintain
at all times.
2
The Bank Account example
● Shared behavior and data between Savings and
Checking Both types of accounts
– Data have these methods
and they behave the same
● current balance
● name of account holder
– Behavior (method names and implementation)
● accessors for common data
● deposit
– Behavior (method names without behavior)
● withdraw Both types of accounts
● display
have these methods
but each method behaves
differently in each
account type 3
The Bank Account example
● Account is a generalized idea
● What actually exists in the banking model are
savings and checking accounts.
– both are accounts with specialized operations on
them. you can refer to them as accounts but you are
using them according what a savings and/or a
checking account can do.
● Generalized ideas (i.e. Account) can be directly
mapped in java as
– abstract classes
– interfaces.
4
The Bank Account with abstract classes
Account abstract class
double balance
String name
+getBalance():double
+getName():String
+setName(String):void
+setBalance(double):void
+deposit(double):boolean
+withdraw(double):boolean abstract methods
+display()
● Abstract classes cannot be instantiated
– there is no constructor !
● Abstract methods must be implemented by
subclasses of Account
– there is no body for withdraw and display inside
Account
5
The Bank Account with abstract classes
Account
double balance
String name
+getBalance():double
+getName():String
+setName(String):void
+setBalance(double):void
+deposit(double):boolean
+withdraw(double):boolean
+display()
Checking Savings
double minimumBalance
+getMinBal():double
+setMinBal(double):void
6
The Bank Account with abstract classes
abstract public class Account {
double balance;
String name;
10
Overloading the constructor
public class Savings extends Account{
double minimumBalance;
}
11
Overloading a method
public class Savings extends Account{
double minimumBalance;
12
Bank account with interfaces only!
● Interfaces in java define sets of operations that the
type must implement. <<IAccount>>
+getBalance():double
Checking +getName():String
double balance +setName(String):void
String name +setBalance(double):void
+deposit(double):boolean
+withdraw(double):boolean
+display()
Savings
double minimumBalance
double balance
String name
+getMinBal():double
+setMinBal(double):void
13
Bank account with interfaces only!
14
Bank account with interfaces only!
public class Savings implements IAccount{
double minimumBalance;
double balance;
String name;
Savings
double minimumBalance // Same as Slide 7
double balance public double getBalance(){ }
String name public void setBalance(double val){ }
public String getName(){ }
+getMinBal():double public void setName(String aName){ }
+setMinBal(double):void public boolean deposit(double amount){ }
// Same as Slide 9
Savings(String name, double amount){ }
Savings(String name, double amount,
double minBalance){ }
public void setMinBal(double newBal){ }
public double getMinBal(){ }
public boolean withdraw(double amount){ }
public void display(){ }
15
Bank account with interfaces only!
public class Checking implements IAccount{
double minimumBalance;
double balance;
String name;
Checking
double balance // Same as Slide 7
String name public double getBalance(){ }
public void setBalance(double val){ }
public String getName(){ }
public void setName(String aName){ }
public boolean deposit(double amount){ }
// Same as Slide 8
public boolean withdraw(double amount){ }
public void display(){ }
16
Interfaces or Abstract classes
● Java allows you to implement as many interfaces as
you like
– you can only extend one abstract class not more !
● Abstract classes can also contain state (instance
variables) and implemented methods
– interfaces cannot have instance variables (they can have
static variables) and cannot have implementations for
methods
17
Interfaces or Abstract classes (cont)
● Both define a type
– with abstract classes you can also share implementation
and enforce method signatures to be implemented later
– with interfaces you can only enforce method signatures
that need to be implemented later
– A class can implement multiple interfaces but extend
only one class (concrete or abstract)
18
Types Revisited
● In Java each interface defines a type. Interface
extension and implementation as subtype
relationships
● A subtype relation in Java is:
– if class C1 extends class C2 then C1 is a subtype of C2
19
Upcasting
● Operation that changes the runtime type of an
instance to one of its supertypes (i.e. move up the
hierarchy)
force an instance that is of type Savings Account to be
–
viewed as of type Account.
public class Main{ Force mySavings
public static void main(String[] args){
to be used as of type
Savings mySavings = new Savings(“John”,100.00,50.00); Account
Savings anotherSavings = new Savings(“Mary”,200.00);
Checking cAccount = new Checking(“Michael”, 89.00);
mySavings.display();
mySavings.display(“Today”);
20
Downcasting
● Operation that changes the runtime type of an
instance to one of its supertypes (i.e. move down
the hierarchy)
–force an instance that is of type Account to be viewed as
of type Savings Account. Force the first element
public class Main{ of the array that is of
public static void main(String[] args){
type Account to be
Savings mySavings = new Savings(“John”,100.00,50.00); used as of type Savings
Savings anotherSavings = new Savings(“Mary”,200.00);
Checking cAccount = new Checking(“Michael”, 89.00);
mySavings.display();
mySavings.display(“Today”); The second element in the list
Account oneAC = (Account) mySavings; is an instance of Checking
Account, stored as of type
Account secondAC= (Account) cAccount;
Account[] allAccounts = new Account[10];
allAccounts[0] = oneAC;
allAccounts[1] = secondAC;
Account. Casting it to
Savings is wrong!
Savings saveAcc = (Savings) allAccounts[0];
Savings saveAcc2 = (Savings) allAccounts[1];
}
} 21