‎2008 May 15 10:32 AM
Hello Forum,
Could you please let me know how to interprete this code?
method GET_VARIABLENAME.
vname = me->vname.
endmethod.
what is 'me' about?
Thanks in advance.
Regards
S.Patel
‎2008 May 15 10:34 AM
‎2008 May 15 10:34 AM
‎2008 May 15 10:39 AM
ME keyword refers to current class object..i think vname is a variable in your current class...
me->vname refers current class object.
Regards,
Dara.
‎2008 May 15 10:40 AM
to address self reference variable local to a method. using of 'ME' is not mandatory but improves the readability