function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
rajaram.adminrajaram.admin 

1.Call by reference and call by value in APEX?

HI,

 

     give me the reply

 

 

 

 

 

 

 

 

Thanks & Regards

Rajaram

Laxman RaoLaxman Rao

call by value = only the value of the variable is given as a parameter. When you change the value in the function, nothing happens to the variable in the structure that calls our function.

All primitive data types are passed by value.(eg string, boolean, date, datetime, decimal etc)

 

call by reference = the reference to the variable is given as a parameter. This is the normal case. Anything the function changes with it, goes right back to the variable in the structure that calls our function.

Non primitive data types are passed by refernce(eg list, set, map)