C++: Difference between revisions

546 bytes added ,  16 years ago
Added a list of STL implementations with links
[unchecked revision][unchecked revision]
m (I screwed up the format in my last edit - sorry!)
(Added a list of STL implementations with links)
Line 398:
 
Note that it is generally not a good idea to port the entire OS to your kernel, although it is reasonable to port a few classes, such as <tt>std::list</tt> and <tt>std::string</tt> if you wish to. As for your user applications; the more the merrier! :)
 
=====Standard Template Library Implementations=====
Here is a list of a the most commonly used STL implementations:
 
* [http://incubator.apache.org/stdcxx/ STDCXX] (a.k.a Apache C++ Standard Library, formally Rogue Wave C++ Standard Library)
* [https://www.dinkumware.com/cpp.aspx Dinkumware C++ Standard Library]
* [http://msdn2.microsoft.com/en-us/library/cscc687y%28VS.80%29.aspx Microsoft C++ Standard Library] (closed source)
* [http://gcc.gnu.org/libstdc++/ libstdc++] (a.k.a. GNU Standard C++ Library)
* [http://www.stlport.org/ STLport]
 
 
Anonymous user