What is the difference between the invocation and execution of a method ? Are two the same thing ?
feedback
|
|
I don't think these are standard terms. However I understand them the following way:
| ||||
|
feedback
|
|
I'm not aware of any standard definitions of those, but my understanding is this:
Invocation results in execution. | |||
|
feedback
|
|
There are some subtle differences:
See also: Overview of Remote Method Invocation. When you consider the method to be remote, the difference between invocation (a request to start the execution of something) and execution (something that is happening somewhere if the request is successful) becomes more apparent. Consider also the case with reflection. This is a method of
Here also clearly invocation and execution are two different things. If you need more convincing, consider the case of an invocation vs execution
| ||||
feedback
|
|
Well, invoking a method means calling it by its name and parameters; executing a method means executing it.. running it, fetching its lines one by one and run them. | |||
|
feedback
|
|
As far as my knowledge is concern: Invocation is the pre-step for execution. If invocation is successful then the process of execution starts... For example, Parameters (the variables declared in the method signature) will be created only during method invocation.It is the pre-step for execution. After the invocation, the actual method will be executed i.e., the local variables(the variables which are declared in the method body) will be created during the method execution. so parameters are at invocating and local variables are at executing... Thus, The successful invocation leads to proceed to execution. | |||
|
feedback
|