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 :)
|
|
|||||||||||
|
closed as not a real question by Neil Butterworth, Burkhard, Bernard, Cătălin Pitiș, Kirill V. Lyadvinsky Aug 10 at 13:35 |
|
|
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 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. |
|||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
