Welcome to SAP Central
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Introduction to interface in ABAP objects

Go down

Introduction to interface in ABAP objects Empty Introduction to interface in ABAP objects

Post  Uma_ABAP Sun Apr 01, 2012 1:17 pm


Interface is one of the strong features of OOP; interface coupled with inheritance is used to feature one of the most powerful features of OOP called polymorphism.

Interface is similar to abstract class but it has many strong features. Interface like class has both definitions as well as the implementation part. The interface can be implemented only in the class that uses it. Interface, which is an independent structure, is used to implement in a class to extend the scope of a class. Interfaces extend the scope of a class by adding their own components to its public section. This allows users to address different classes via a universal point of contact.

How to write simple interface
INTERFACE my_interface.
Data : name(20).
METHODS: I_method1,
I_method2.
ENDINTERFACE.

Uma_ABAP

Posts : 56
Join date : 2012-03-31

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum