I'm new to programming, so what is the difference between a Framework, a Toolkit and a Library?
|
closed as not constructive by Peter Ritchie, bmargulies, Bo Persson, Craigy, Graviton Aug 27 '12 at 2:53
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
The most important difference, and in fact the defining difference between a library and a framework is Inversion of Control. What does this mean? Well, it means that when you call a library you are in control. But with a framework, the control is inverted: the framework calls you. (This is called the Hollywood Principle: Don't call Us, We'll call You.) This is pretty much the definition of a framework. If it doesn't have IoC it's, not a framework. (I'm looking at you, .NET!) Basically, all the control flow is already in the framework, and there's just a bunch of predefined white spots that you can fill out with your code. A library on the other hand is a collection of functionality that you can call. I don't know if the term toolkit is really well defined. Just the word "kit" seems to suggest some kind of modularity, i.e. a set of independent libraries that you can pick and choose from. What, then, makes a toolkit different from just a bunch of independent libraries? Integration: if you just have a bunch of independent libraries, there is no guarantee that they will work well together, whereas the libraries in a toolkit have been designed to work well together – you just don't have to use all of them. But that's really just my interpretation of the term. Unlike library and framework, which are well-defined, I don't think that there is a widely accepted defintion of toolkit. |
|||||||||||||||||||||
|
|
Martin Folwer discusses the difference between a library and a framework in his article on Inversion of Control:
To summarize: your code calls a library but a framework calls your code. |
||||
|
|
A library is simply a collection of methods/functions wrapped up into a package that can be imported into a code project and re-used. A framework is a robust library or collection of libraries that provides a "foundation" for your code. For example, the .NET framework is a large collection of cohesive libraries in which you build your application on top of. You can argue there isn't a big difference between a framework and a library, but when people say "framework" it typically implies a larger, more robust suite of libraries which will play an integral part of an application. I think of a toolkit the same way I think of an SDK. It comes with documentation, examples, libraries, wrappers, etc. Again, you can say this is the same as a framework and you would probably be right to do so. They can almost all be used interchangeably. ** UPDATE: ** As seen in the comments by Jorg and other posters, a framework follows an Inversion of Control pattern. I stand corrected in my interpretation of a framework. |
|||||||||||||||||
|
|
very, very similar, a framework is usually a bit more developed and complete then a library, and a toolkit can simply be a collection of similar librarys and frameworks. a really good question that is maybe even the slightest bit subjective in nature, but I believe that is about the best answer I could give. |
|||||||||||
|
|
In relation with the correct answer from Mittag: a simple example. Let's say you implement the The full, complete answer to your question is given very lucidly in Chapter 19 (the whole chapter devoted to just this theme) of this book, which is a very good book by the way (not at all "just for Smalltalk"). |
||||
|
|

