Abstract Classes & Interfaces
These notes are from a good explanation taken from Jason Wertz videos on youtube Abstract class A class that represents a generalisation but is ONLY intended to be extended NOT…
These notes are from a good explanation taken from Jason Wertz videos on youtube Abstract class A class that represents a generalisation but is ONLY intended to be extended NOT…
An interface is a way of organising code, take the following example that may apply to a game scenario: CharacterInterface.java Then in the game we have characters; James.java and Emma.java…