Reputation: 3046
In ABAP I want to know which OO-Properties a function group has.
A function group has encapsulation, because I can put in global variables in a function group. Polymorphism and Inheritance are not possible within a function group. Is this correct?
What about different instances of function groups? Is this an OO-Property at all and is it possible to accomplish this with function groups?
Upvotes: 1
Views: 1953
Reputation: 5071
Like Jagger and Sandra Rossi suggest, think of a function group as a global abstract final class
with static public/private
members.
Upvotes: 9