User Tools

Site Tools


anti-patterns:long_parameter_list

Long Parameter List

Alternative Names

  • Too many parameters
  • Too many arguments

Context

Problem Statement

A method has a lot of parameters.

Description

  • Methods with 0 and 1 arguments are fine
  • 2 parameters still good
  • 3 parameters can be considered OK
  • 4 and more parameters are usually too much

Causes

Origin

Disadvantages

  • MIMC Obviously MIMC is violated by long parameter lists.
  • PSU: Long methods are hard to read it is often necessary to look up what all the parameters mean.
  • ML: Parameters can be easily misinterpreted or can be given in the wrong order.
  • EUHM: Methods with long parameter lists are neither easy to use nor hard to misuse, they are just easy to write.
  • OOS: Following OOS leads to short parameter lists.
  • HC: A long parameter list may be a sign of low cohesion.

Advantages

  • KISS: Introducing a method with many parameters is easy, adding a parameter is easy, neglecting refactoring is easy. Applying KISS here can be regarded sloppy or pragmatic, depending on the concrete situation.
  • GP: Methods with many parameters are usually more potent than those with fewer parameters. But using GP to justify a long parameter list might also be a sign that the method should not have all these capabilities, i.e. it is lacking cohesion.

Refactorings

Anti-Pattern Collections

Examples

Example 1: CreateProcess and how it is avoided

The Windows API function CreateProcess takes ten arguments most of which are even optional. The function is cumbersome to use and hard to read because of the large number of parameters. Developers tend to avoid the use of the function and use simpler ones like ShellExecute (which still has six parameters) instead, or write wrapper functions for it. Some might be even tempted to use WinExec which is very easy to use but deprecated. In contrast to that the .NET method Process.Start can often be called with just one parameter.

Description Status

Further Reading

Discussion

Discuss this wiki article and the anti-pattern on the corresponding talk page.

anti-patterns/long_parameter_list.txt · Last modified: 2021-10-18 22:23 by christian