Wednesday 25 June 2014

Casting In ABAP Objects

Type of Casting:
1. Narrowing Cast( Upcasting):- When we assign the instance of the Sub class back to the instance of the Super class, than it is called the "Narrow Casting", because we are switching from a "More Specific view of an object" to "less specific view". 


2. Widening Cast(Downcasting):- When we assign the instance of the Super class to the Subclass, than it is called the Widening Cast, because we are moving to the "More Specific View" from the "Less specific view". 




-----------------------------------------------Program----------------------------------------------------------------------------

CLASS lcl_shape DEFINITION.
 PUBLIC SECTION.
              METHODs draw.
 ENDCLASS.

 CLASS lcl_circle DEFINITION INHERITING FROM lcl_shape.
   PUBLIC SECTION.
                 METHODSdraw REDEFINITION,
                                      calc_area.
 ENDCLASS.

 CLASS lcl_shape IMPLEMENTATION.
   METHOD draw.
      WRITE :'Drawing any Shape'.
   ENDMETHOD.
 ENDCLASS.

CLASS lcl_circle IMPLEMENTATION.
METHOD draw.
   WRITE :'Drawing specific shape: Circle'.
ENDMETHOD.

METHOD calc_area.
  WRITE :'Area Of Crcle = 2iiR'.
ENDMETHOD.
ENDCLASS.

START-OF-SELECTION.
data o_cir type REF TO lcl_circle.
create OBJECT o_cir.
call METHOD o_cir->draw)" calls subclass Draw() method
call METHOD o_cir->calc_area).
uline.
"--------- Narrow cast(Upcast)---------------"
data o_shp type REF TO lcl_shape.
o_shp o_cir"  Narrow cast(Upcast)
call METHOD o_shp->draw)" calls sub class Draw()  method
"call METHOD o_shp->calc_area( ) . " compilation error
uline.

"---------- Widening Cast(Downcast) -----------"

data o_cir1 type REF TO lcl_circle.

" o_cir1 = o_shp. "  complilation error
o_cir1 ?= o_shp.  " Widening Cast(Downcast)
call METHOD o_cir1->draw)" calls subclass Draw() method
call METHOD o_cir1->calc_area).

-------------------------------------------------------Output-------------------------------------------------------------------













----------------------------------------------------xxxxx-------------------------------------------------------------------------

No comments:

Comments system

Disqus Shortname