OOAbap Concepts
OOAbap Concepts
Objects- Object is an real time entity in the world. It is the instances on classes and hold some data.
Composition- when one class data is related or will affect other class data is known as composition. Eg:
when one class data is deleted the data pertaining to that in another class will be deleted.
Abstraction- Extracting the essential details or data while ignoring the unwanted data.
Polymorphism-
Inheritance-
Overriding- Overriding allows to change the functionality of the inherited methods. This is also known as the
redefinition. Overriding is not possible for STATIC methods
Overloading-
Overloading allows to change the signature of the inherited methods in the subclasses. ABAP doesn’t
support Overloading.
Only exception is the CONSTRUCTOR method. Since we can create CONSTRUCTOR method in each
subclass, we can change the signature of this method.
Friends-In any Object Oriented programming language, the access to private or protected components –
both methods and attributes – would be prohibited. If someone try to access them, compiler would generate
syntax error.
Sometimes, it would be advantageous to give the access to these protected and private attributes to other
classes. This can be achieved using the FRIENDS addition.
Narrowing Cast (Up Casting)- When we assign the instance of the Subclass back to the instance of the
Superclass, than it is called the “Narrow Casting”, because we are switching from a “More Specific view of
an object” to “less specific view”.
Widening Cast (Down Casting)-When we assign the instance of the Superclass to the Subclass, than it is
called the Widening Cast, because we are moving to the “More Specific View” from the “Less specific view”.
Due to this reason it is also called the “Down Casting”.