InterviewSolution
Saved Bookmarks
| 1. |
Explain What Is The Main Difference Between The Function Calls And Messages? |
|
Answer» The MAIN difference between function CALL and message is that a function and its arguments are linked together in the compiled CODE, but a message and a receiving object are not linked until the program is EXECUTING and the message is sent. The main difference between function call and message is that a function and its arguments are linked together in the compiled code, but a message and a receiving object are not linked until the program is executing and the message is sent. |
|