Incomplete library class smell
From CSSEMediaWiki
(Difference between revisions)
m (Reverted edits by Ebybymic (Talk); changed back to last version by Matthew Harward) |
|||
Line 1: | Line 1: | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
Software reuse is a real buzzword in the object oriented community. Library classes (for example Java's library) are very important when developing a program and because it is often not possible for developers to change the library classes they are using particular effort has to be put into the development of library classes to ensure that they are complete in terms of the behavior they offer. However, this can be difficult and requires thinking of all possible future uses for code, which conflicts with [[You ain't gonna need it]]. | Software reuse is a real buzzword in the object oriented community. Library classes (for example Java's library) are very important when developing a program and because it is often not possible for developers to change the library classes they are using particular effort has to be put into the development of library classes to ensure that they are complete in terms of the behavior they offer. However, this can be difficult and requires thinking of all possible future uses for code, which conflicts with [[You ain't gonna need it]]. | ||
Latest revision as of 03:11, 25 November 2010
Software reuse is a real buzzword in the object oriented community. Library classes (for example Java's library) are very important when developing a program and because it is often not possible for developers to change the library classes they are using particular effort has to be put into the development of library classes to ensure that they are complete in terms of the behavior they offer. However, this can be difficult and requires thinking of all possible future uses for code, which conflicts with You ain't gonna need it.
See also