What is the difference between a class library and a framework - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T14:25:16Zhttp://stackoverflow.com/feeds/question/724438http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/724438/what-is-the-difference-between-a-class-library-and-a-framework7What is the difference between a class library and a frameworkPeter Gfader2009-04-07T07:11:39Z2009-04-07T07:54:44Z
<p>I hear the whole day the terms class library, base class library, Framework, ...<br />
What highlights a framework and what a base class library?</p>
http://stackoverflow.com/questions/724438/what-is-the-difference-between-a-class-library-and-a-framework/724457#7244570Answer by Earwicker for What is the difference between a class library and a frameworkEarwicker2009-04-07T07:17:40Z2009-04-07T07:17:40Z<p>I think of a framework as a pattern that an application can conform to, defined in a set of libraries.</p>
<p>A "base" class library might mean several things depending on the context; it could refer to classes that are designed to be derived from, which is a common approach in frameworks, or it could merely refer to a core library of classes that are assumed to be useful in any application and so are considered a "basic" need, almost part of the language (for example, container classes).</p>
http://stackoverflow.com/questions/724438/what-is-the-difference-between-a-class-library-and-a-framework/724458#7244581Answer by Peter Wone for What is the difference between a class library and a frameworkPeter Wone2009-04-07T07:18:03Z2009-04-07T07:23:28Z<p>A framework is an allegedly cohesive collection of one or more class libraries. The Java and .NET frameworks, for example are made up of hundreds of class libraries. In .NET there is, by custom but not necessarily, a correspondence between assemblies and class libraries. In Java there is a rough correspondence between namespaces and class libraries.</p>
<p>Although I have never noticed the phrase "<em>base</em> class library", I would expect such a thing to contain abstract classes intended to be subclassed before use.</p>
<p>Framework in the sense of my first paragraph implies completeness within the purview of the library. For example, you would expect an image manipulation framework to contain everything you need to manipulate images, ranging from file format parsers to in-memory graphics operations.</p>
http://stackoverflow.com/questions/724438/what-is-the-difference-between-a-class-library-and-a-framework/724459#7244596Answer by Smashery for What is the difference between a class library and a frameworkSmashery2009-04-07T07:18:08Z2009-04-07T07:18:08Z<p>You use a class library in writing your code, but you code <em>within</em> a framework.</p>
<p>The term "framework" is meant to invoke a sense of "being within an environment". If I were to put a (limited) analogy to it, I'd say that a class library is like being able to eat cheese and drink wine, whereas a framework is like visiting France; experiencing the culture. The framework is the structure around which you build your program. The class library are the tools you use (possibly within a framework).</p>
<p>Of course, a framework will typically contain libraries of classes. .NET, for instance, has heaps of class libraries which are included in the entire framework.</p>
http://stackoverflow.com/questions/724438/what-is-the-difference-between-a-class-library-and-a-framework/724462#7244623Answer by Mork0075 for What is the difference between a class library and a frameworkMork00752009-04-07T07:18:49Z2009-04-07T07:18:49Z<p>Often you use libraries to get a certain functionality in your OWN software/infrastructre. For example printing a barcode, you would use a library to do so. A framework abstracts a whole class of problems, perhaps the problem of writing web applications. To do so the framework delivers the "frame" with all functionality and stubs you can programm against.</p>
http://stackoverflow.com/questions/724438/what-is-the-difference-between-a-class-library-and-a-framework/724464#7244643Answer by Gishu for What is the difference between a class library and a frameworkGishu2009-04-07T07:19:30Z2009-04-07T07:27:36Z<p>A <strong>class library</strong> usually is a DLL or a packet of classes that you can "include"/"reference" into your solution and reuse.</p>
<p>A <strong>framework</strong> is usually a recurring pattern/solution targeted towards a specific context e.g. a GUI Framework. A framework more than often implies that you write certain pieces as dictated by the framework designers, slot them in the expected/correct places and it should work. </p>
<ul>
<li>e.g. Spring is a framework for DI. You write xml files in a format dictated by the designers and then the framework allows you to obtain assembled classes without having to worry about the framework does it.</li>
<li>Rails is a framework in Ruby for RAD web-apps. You only write the models, controllers and views and you have a working web app in under an hour. </li>
<li>the BCL is a set of class libraries so that you don't have to implement data structures and frequently used types in .NET and just get the tested proven implementations for free by just including them.</li>
</ul>
<p>A framework usually contains multiple class libraries. As always, the terms are used in an ambiguous manner nowadays.. but the above represents the more common interpretation of the terms... mine atleast :)</p>
http://stackoverflow.com/questions/724438/what-is-the-difference-between-a-class-library-and-a-framework/724469#7244691Answer by Marc Gravell for What is the difference between a class library and a frameworkMarc Gravell2009-04-07T07:19:59Z2009-04-07T07:19:59Z<p>I'd argue that the two are fairly interchangeable... - it is simply a set of common re-usable code (in whatever platform you are targetting), usually supplied by the platform.</p>
<p>Maybe you could argue that the BCL usually represents the "pure" (vendor-independent) modules, where-as the "framework" <em>may</em> (depending on how you use the term) include the vendor's bespoke modules. But that it perhaps open to local interpretation.</p>
http://stackoverflow.com/questions/724438/what-is-the-difference-between-a-class-library-and-a-framework/724472#7244723Answer by Cerebrus for What is the difference between a class library and a frameworkCerebrus2009-04-07T07:20:42Z2009-04-07T07:20:42Z<p>A Class Library is simply a set of classes encapsulated into a definable unit such as an assembly. The term is not restricted to any particular language or framework.</p>
<p>The <a href="http://en.wikipedia.org/wiki/Base%5FClass%5FLibrary" rel="nofollow">Base Class Library</a> (BCL) is a specific term attributes to the set of Class libaries that come pre-installed with the .NET framework which provide classes neatly organized into namespaces so that you have an API against which to build your own solutions.</p>
<p>A Framework is a wider term that is inclusive of the Class libraries, a virtual machine that manages controlled execution of processes, provides a runtime environment, along with other services such as memory management and exception handling. See the <a href="http://en.wikipedia.org/wiki/.net%5Fframework" rel="nofollow">.NET Framework</a> for more information.</p>
http://stackoverflow.com/questions/724438/what-is-the-difference-between-a-class-library-and-a-framework/724483#72448314Answer by Jochen Walter for What is the difference between a class library and a frameworkJochen Walter2009-04-07T07:24:34Z2009-04-07T07:24:34Z<p>The distinguishing feature between a class library and a software framework is that in a framework, the flow of control is not determined by the user´s code, but by the framework.</p>
<p>This is also known as Hollywood principle (don´t call us, we call you).</p>
<p>By the way, there is also a nice <a href="http://en.wikipedia.org/wiki/Software%5Fframework" rel="nofollow">Wikipedia article </a> on this topic.</p>
http://stackoverflow.com/questions/724438/what-is-the-difference-between-a-class-library-and-a-framework/724543#7245432Answer by Uday for What is the difference between a class library and a frameworkUday2009-04-07T07:54:44Z2009-04-07T07:54:44Z<p>you call the code of class library
where as framework calls your code</p>