vote up 21 vote down star
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?

flag

52% accept rate
For the record, a closely related question: stackoverflow.com/questions/156767/… (That's formulated to be C# specific, while this is language-agnostic; basically the same otherwise.) – Jonik Aug 27 at 11:27

5 Answers

vote up 54 vote down check

Parameters are the things defined by functions as input, arguments are the things passed as parameters.

void foo(int bar) { ... }

foo(baz);

In this example, bar is a parameter for foo. baz is an argument passed to foo.

link|flag
vote up 1 vote down

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?

link|flag
vote up 5 vote down

Parameter is variable in the declaration of function.

Argument is the actual value of this variable that gets passed to function.

link|flag
vote up 3 vote down

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...

link|flag
vote up 6 vote down

Arguments are what you have when you're invoking a subroutine. Parameters are what you are accessing inside the subroutine.

argle(foo, bar);

foo and bar are arguments.

public static void main(final String[] args) {
    args.length;
}

args is a parameter.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.