Reduce implicit parameter passing

From CSSEMediaWiki
(Difference between revisions)
Jump to: navigation, search
Line 1: Line 1:
This rule suggests method should always use explicit parameters. In some situation, global variables are used as implicit parameters among methods within the same class. Implicit parameter ties methods with the class, and it also hide the necessary information for outsiders who wish to use the method.  
+
This rule suggests methods should always use explicit parameters. In some situations, instance variables are treated like global variables and are used as implicit parameters among methods within the same class. Implicit parameters tie methods to the class, and it also hides the necessary information from outsiders who wish to use the method.  
  
The undesired results of using implicit parameter are  
+
The undesired results of using implicit parameters are  
* making difficult to split a class into parts, or
+
* making it difficult to split a class into parts
* even possible to lead other programmers to miuse method (since parameters are implicit passed in which case may not be awared by other programmers).
+
* leading other programmers to misuse methods as they may not be aware of all implicit parameters
  
Change the implicit parameter to explicit parameter will overcome these problems.
+
Changing the implicit parameters to explicit parameters will overcome these problems, although [[Reduce the number of arguments|beware of too many parameters]].
  
 
== Example ==
 
== Example ==
  
 
To do.
 
To do.
 +
 +
[[Category: Johnson and Foote's heuristics]]

Revision as of 01:45, 18 August 2009

This rule suggests methods should always use explicit parameters. In some situations, instance variables are treated like global variables and are used as implicit parameters among methods within the same class. Implicit parameters tie methods to the class, and it also hides the necessary information from outsiders who wish to use the method.

The undesired results of using implicit parameters are

  • making it difficult to split a class into parts
  • leading other programmers to misuse methods as they may not be aware of all implicit parameters

Changing the implicit parameters to explicit parameters will overcome these problems, although beware of too many parameters.

Example

To do.

Personal tools