What is inheritance and multi-level inheritance? Explain with example ?
Answers were Sorted based on User's Feedback
Inheritance is nothing but acquiring the properties of one
class(base class) to another class(child class).
Multi-level Inheritance is nothing but one parent class that
have more than one child class. For Ex, P1 is parent Class
and C1 and C2 are the Child classes, now C1 can acquire the
properties of Parent class P1 and C2 can acquire the
properties of both Child calss C1 and Parent Class P1.
SAP ABAP SUPPORTS MULTI-LEVEL INHERITANCE... SAP ABAP NOT
SUPPORTS MULTIPLE INHERITANCE, ACHIEVES THROUGH INTERFACES
CONCEPT...
Is This Answer Correct ? | 16 Yes | 3 No |
It is an OO ABAP - Classes Development Inheritance and
polymorphism
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / sateesh
inheritance Means Re-usability, In SAP we have only single
Inheritance there is no Multiple Inheritance.
EG:
Class A{
Public Section: Write A.
}
Class B inheriting from A
{
Public Section: Write A,
Write B.
}
-> I mean here we are inheriting method A into Class B and
Redifing the method A and we are additionally adding "Write
B" in the Class B.
In ABAP only Single inheritance is Possible.
Is This Answer Correct ? | 0 Yes | 6 No |
What does an EXEC SQL stmt do in ABAP?
What is the difference between synchronous and asynchronous update? : abap bdc
In Open SQL statements such as Insert update delete which one is FASTlLY retrieve the results and which one is Efficient?
Do we create table fields with out data elements and domains?
can i write combine code for row material and finish good for BDC?plz give me steps to create combine bdc.
Why is bdc _cursor and GET_Cursor used?
What is asynchronous update?
Waht is "READ TABLE" command?? Whats the use of it?? Whats the syntax of the same?
What are the functional modules used in sequence in bdc? : abap bdc
What is modularization and its benefits?
What is transparent table?
CAN ANY ONE TELL ME What is the use of fallowing structures 1)BDCDATA 2)BDCMSGCOLL