Minimize number of methods
From CSSEMediaWiki
(Difference between revisions)
m (Minimize the number of methods moved to Minimize number of methods: Just making it cleaner) |
(→See also) |
||
Line 6: | Line 6: | ||
== See also == | == See also == | ||
* [[Riel's heuristics]] | * [[Riel's heuristics]] | ||
+ | * [[Fat interfaces]] |
Revision as of 04:34, 6 October 2008
Riel's Heuristic #2.3
Minimize the number of methods in the public interface of a class. This ensures that you can always find the method that you are looking for, and enhances reusability. This is tied to the idea of You ain't gonna need it - don't implement methods until you need them.