I often find myself confused with how the terms 'arguments' and 'parameters' are used. They seem to be used interchangeably in the programming world.
What's the correct convention for their use?
|
7
|
I often find myself confused with how the terms 'arguments' and 'parameters' are used. They seem to be used interchangeably in the programming world. What's the correct convention for their use?
|
|||
|
|
|
Parameters are the things defined by functions as input, arguments are the things passed as parameters.
In this example, |
|||
|
|
|
|
I've also come accross Formal Parameter as the variable defined in the function declaration and Actual Parameter as the actual values you pass. Can anyone tell whether it is correct terminology? |
||
|
|
|
|
Parameter is variable in the declaration of function. Argument is the actual value of this variable that gets passed to function. |
||
|
|
|
|
Although Wikipedia is hardly an authoritative source, it does a decent job of explaining the terms. I guess you could say that parameters are to arguments what classes are to instances of objects... |
||
|
|
|
|
Arguments are what you have when you're invoking a subroutine. Parameters are what you are accessing inside the subroutine.
|
|||
|
|