Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm new to programming, so what is the difference between a Framework, a Toolkit and a Library?

share|improve this question
1  
Nice question. It's one that many around here would take for granted, but newer programmers might be confounded by the distinctions (or lack of). – Adam Crossland Jun 16 '10 at 22:25
Largely a duplicate of stackoverflow.com/questions/1415592/… – dmckee Jun 16 '10 at 22:31

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.

5 Answers

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.

share|improve this answer
4  
+1 for the right answer – Pascal Thivent Jun 16 '10 at 23:32
6  
+1 for explaining Inversion of Control concept – Federico Cristina Jun 16 '10 at 23:47
3  
+1 for Holywood :) – takeshin Feb 12 '11 at 18:07
2  
@takeshin: I didn't come up with that. This goes back to at least 1985: Richard E. Sweet, The Mesa Programming Environment, July 1985: "Don't call us, we'll call you (Hollywood's Law)" – Jörg W Mittag Feb 12 '11 at 20:28
1  
Well, you've given a good point, but don't you think that Hollywood's law is related to application workflow and DI (IoC) is related to dependency resolving process? I mean that all frameworks do follow the Hollywood Law (by definition) but not every (I would even say more of them) don't care of dependencies resolving. Don't you agree? – zerkms Feb 13 '11 at 5:37
show 3 more comments

Martin Folwer discusses the difference between a library and a framework in his article on Inversion of Control:

Inversion of Control is a key part of what makes a framework different to a library. A library is essentially a set of functions that you can call, these days usually organized into classes. Each call does some work and returns control to the client.

A framework embodies some abstract design, with more behavior built in. In order to use it you need to insert your behavior into various places in the framework either by subclassing or by plugging in your own classes. The framework's code then calls your code at these points.

To summarize: your code calls a library but a framework calls your code.

share|improve this answer
(+1) for good explanation Can you tell me the difference between framework and container e.g the spring framework and EJB container – mukund Jun 7 '12 at 10:32

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.

share|improve this answer
2  
-1: You are missing the most important difference between a library and a framework: Inversion of Control. – Jörg W Mittag Jun 16 '10 at 23:07
1  
It's not a matter of size. – Pascal Thivent Jun 16 '10 at 23:37
@Jorg - Inversion of Control is a design pattern. What does that have to do with a framework? – Jordan Parmer Jun 17 '10 at 13:27
@Pascal - I know and I qualified in my answer that it is more of an "implication" than a fact. Frameworks can indeed be small. As a developer, my brain thinks of the word "framework" as being more of a suite than a "library" that might provide a very focused set of methods. Just implied connotation is all I mean. – Jordan Parmer Jun 17 '10 at 13:30
2  
Inversion of Control is the defining difference, and in fact pretty much the only difference between a library and a framework. Both a library and a framework are a collection of functionality. The only difference is who is in control. With a library, your code is in control and calls the library. With a framework, the control is inverted: the framework is in control and it calls your code. Not mentioning Inversion of Control when explaining the difference between a framework and library is like not mentioning breathing when explaining the difference between a whale and a fish. – Jörg W Mittag Jun 17 '10 at 13:43
show 2 more comments

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.

share|improve this answer
3  
-1: You are missing the most important difference between a library and a framework: Inversion of Control. – Jörg W Mittag Jun 16 '10 at 23:07
1  
I don't know Jorg - I think the term framework has been around for longer than IOC has been in common use. Framework may imply IOC but IMO does no necessitate it. – Groky Jun 17 '10 at 0:13
@Groky: I'm not sure. I have seen frameworks that are older than me for machines produced by companies that no longer exist, and they use Inversion of Control. Heck, every .*rc file in Unix is an example of IoC. Hook scripts in version control systems are an example of IoC. Shutdown routines on an IBM System/38 are an example of IoC. – Jörg W Mittag Jun 17 '10 at 0:23

In relation with the correct answer from Mittag:

a simple example. Let's say you implement the ISerializable interface (.Net) in one of your classes. You make use of the framework qualities of .Net then, rather than it's library qualities. You fill in the "white spots" (as mittag said) and you have the skeleton completed. You must know in advance how the framework is going to "react" with your code. Actually .net IS a framework, and here is where i disagree with the view of Mittag.

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").

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.