Can someone illustrate what really is the difference between the two?
|
1
|
|
|
|
|
|
Even though they are two very different things, one can argue they both solve a software architecture problem
A key difference is the scope cohesion:
|
|||
|
|
|
|
Here is GOF's answer:
|
||
|
|
|
|
Frameworks are more specific to a problem definition. In order to write one design patterns can be devised or used where ever applicable. |
||
|
|
|
|
A design pattern is a standard solution to a well known (design) problem. For example the Factory pattern, and the Abstract Factory pattern offer a blueprint for implementing designs to overcome common problems with instantiating objects. A framework on the other hand contains infrastructure which you can use and extend to develop your own solution. For example a model 2 "web application framework" will contain the infrastructure for building web based applications. It will contain the controller, some gui elements and base classes which we can extend to create our model and business logic. Typically it contains plumbing code and interactions which we inherit when we extend from their base classes. Some examples of frameworks are Struts, JSF, Swing Application Framework, JUnit testing framework, etc... Going a step ahead there are also libraries, which we use directly from our code. Usually without extending their classes. Log4J would be an example of a library. |
||
|
|
|
|
From Object -Oriented Software Development Using Java by Xiaoping Jia:
|
||
|
|
|
|
A framework is a set of related classes to perform a certain task. Those classes may or may not implement a certain design pattern. |
||||
|
|
|
A design pattern is a well-established design for tackling a problem. A framework is an actual package of code you use to make building applications easier. Note that a framework can and probably will, make use of design patterns. |
||
|
|
|
|
A design pattern is a concept, or a receipt for how to get a specific problem done. A Framework is code ready for use, usually packaged in a way that makes creating an application much easier. It does not make sense to explain the differences because they are two totally different things. |
|||
|
