Please enable JavaScript.
Coggle requires JavaScript to display documents.
OOPS Concepts - Coggle Diagram
OOPS Concepts
Encapsulation
Enables to keep properties and methods inside a Class and restrict access using Access-Specifiers. Private, Public, Protected and Internal
polymorphism
-
Method Overloading
-
Same Method name, different number of parameters or different order or different types. Same return Type for all.
Inheritance
relation between two classes, where Derived class inherits features of Base class
-
-
-
-
-
-