vote up 1 vote down star

Hello, I have a question about library existence. How many libraries today is supported? Myself I only know one library which is outdated - MFC. Also I know that QT is library for creating UI interface. There is also STL, BOOST, ATL, GTK+ and etc. But I don't know all of them and what they stand for(algorithms, functions, smart pointers, UI) . I would appreciate if someone would write something about it :)

flag

namespace std and iostream :D – CrazyJugglerDrummer Aug 10 at 13:30
1  
You can't close every question that isn't specific enough to have a one word answer. – mgb Aug 10 at 13:33
Possible duplicate - stackoverflow.com/questions/1021112/… – Kirill V. Lyadvinsky Aug 10 at 13:34
Duplicate of stackoverflow.com/questions/777764/… – Cătălin Pitiș Aug 10 at 13:36

closed as not a real question by Neil Butterworth, Burkhard, Bernard, Cătălin Pitiș, Kirill V. Lyadvinsky Aug 10 at 13:35

3 Answers

vote up 2 vote down check

I would suggest you take a look at Wikipedia or even Google. Most of the answers given here will not be as in depth as you can find in 20 seconds via either of those sites.

Wikipedia:
The Standard Template Library (STL) is a software library partially included in the C++ Standard Library. It provides a few; containers, iterators, algorithms.

The Boost C++ Libraries are a collection of peer-reviewed, open source libraries that extend the functionality of C++. Several Boost libraries have been accepted for incorporation into both the Technical Report 1 and C++0x.

Qt is a cross-platform application development framework, widely used for the development of GUI programs. Non-GUI features include SQL database access, XML parsing, thread management, network support and a unified cross-platform API for file handling.

link|flag
vote up 1 vote down

STL is a library of collections, vectors, lists,maps strings etc. It uses templates to allow the same container to work with any type (builtin or your own) = vital to know.

BOOST is a wide ranging collection of very well written code to do a lot of things. Some of it will be incorporated into the next version of each standard library. If it's in BOOST don't write it yourself.

QT is a gui library (and a few other things to help you write cross platform applications). It's not a standard part of C++ (it's owned by Nokia) but is available under LGPL (so you can use it in commercial apps) for a lot of platforms - including mobile phones. There is also the similair community wxWidgets project.

link|flag
vote up 1 vote down

The STL is part of C++ and should be covered by any book/tutorial/whatever about C++. The other ones all have homepages and wikipedia entries, which should answer all your questions.

Note that GTK+ is a gui toolkit for C, not C++, though it does have C++ bindings (gtkmm) and, like all C libraries, can be used from C++ directly, if you want.

link|flag

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