SoftwareEngineeringConcepts
From HerzbubeWiki
Contents |
About this page
On this page I try to compile concepts from the Software Engineering field that have caught my eye for one reason or other. What little content there is is still rather unorganized.
Note: The Book References page is slightly related.
Glossary
No terms yet...
Architecture / Design
Dependency Injection
Source
I came across Dependency Injection in this informIT article, which is an interview with the GoF in honor of the 15 year anniversary of their "Design Patterns" book. They suggest Dependency Injection as a new pattern that could be included in a revised/refactored version of their book.
References
- Martin Fowler's article, which coined the term
- The Wikipedia article has a useful explanation and example of the pattern/concept.
- Google search
My notes
The basic intent is to decouple an object from
- The creation of its dependencies
- How the dependencies are added
Dependency Injection is also referred to as "DI".
Other
Nothing here yet.
