Named parameter
From Wikipedia, the free encyclopedia
In computer programming, naming of parameters (or named parameters) means that the method signature clearly states the name (meaning) of each parameter. This is not used in languages like Java and C++. It is supported in languages like Ada, PL/SQL, Smalltalk and Objective C; in Objective Caml, named parameters are called labels.
For example, consider a Java method call:
window.addNewControl("Title", 20, 50, 100, 50, true);
Here is the same method call in ObjC:
[window addNewControlWithTitle:@"Title" xPosition:20 yPosition:50 width:100 height:50 drawingNow:YES];
Note that the Objective-C version is more explicit, while the Java version is more concise. Depending on the particular instance, a programmer may find one or the other easier to read.
However, a good IDE provides the programmer with exactly the same information, plus the type of the parameters, plus an eventual description of the method and its parameters. For example, Eclipse does this for Java. The same applies to other languages that have that kind of IDE.
Note that the named parameters in Smalltalk and Objective-C refers to the syntactical presentation and not to the underlying implementation. Neither language supports named parameters in the sense that, for example, Python supports key=value parameters.
For example, in the above Objective-C fragment, the method name is literally "addNewControlWithTitle:xPosition:yPosition:width:height:drawingNow:".