Please enable JavaScript.
Coggle requires JavaScript to display documents.
Chapter 5. CLASS DESIGN (Introducing Class Inheritance (Defining…
Chapter 5. CLASS DESIGN
-
-
Implementing Interfaces
-
Inheriting an Interface
Rules
-
Interface extends another interface + Abstract class implements an interface -> inherit all of the abstract methods
Multiple Inheritance
-
-
Same name, input parameter + Different return types => NO COMPILE
Interface Variables
Assumed to be public, static, and final
-
-
-
-