Procedure pointers in RPGLE (PROCPTR) - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T17:49:17Z http://stackoverflow.com/feeds/question/756290 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/756290/procedure-pointers-in-rpgle-procptr 0 Procedure pointers in RPGLE (PROCPTR) jjujuma 2009-04-16T14:10:06Z 2009-07-30T20:08:42Z <p>Can anyone provide any interesting usage examples of these?</p> http://stackoverflow.com/questions/756290/procedure-pointers-in-rpgle-procptr/799668#799668 0 Answer by Paul Morgan for Procedure pointers in RPGLE (PROCPTR) Paul Morgan 2009-04-28T20:25:35Z 2009-04-28T20:25:35Z <p>jjujuma,</p> <p>For a trivial example you could use this to implement some Object Oriented style procedure like Draw. You'd call a Circle_Draw procedure for a Circle or a Square_Draw procedure for a Square by assigning the appropriate %PADDR of the Circle_Draw or Square_Draw to your Draw procedure pointer. When calling the Draw procedure pointer you hide which procedure (Circle_Draw or Square_Draw) you're calling.</p>