So, I've been reading through and it appears that the BOOST libraries get used a lot in practice (not at my shop, though). Why is this? and what makes it so wonderful?
|
3
|
|||
|
|
|
Boost is used so extensively because:
|
|||
|
|
|
Because they add many missing things to the standard library, so much so some of them are getting included in the standard. Boost people are not lying:
|
||
|
|
|
|
From the home page:
So, it's a range of widely used and accepted libraries, but why would you need it? If you need:
|
||
|
|
|
|
It adds libraries that allow for a more modern approach to C++ programming. In my experience many C++ programmers are really the early 1990s C++ programmers, pretty much writing C++ classes, not a lot of use of generics. The more modern approach uses generics to compose software together in manner thats more like dynamic languages, yet you still get type checking / performance in the end. It is a little bit ugly to look at. But once you get over the syntax issues it really is quite nice. Boost gives you a lot of the tools you need to compose stuff easily. smart pointers, functions, lambdas, bindings, etc. Then there are boost libraries which exploit this newer way of writing C++ to provide things like networking, regex, etc etc... if you are writing lots of for loops, or hand rolling function objects, or doing memory management, then you definitely should check boost out. |
||
|
|
|
|
A few Boost classes are very useful (shared_ptr), but I think they went a bit nuts with traits and concepts in Boost. Compile times and huge binary sizes are completely insane with Boost, as is the case with any template-heavy code. There has to be a balance. I'm not sure if Boost has found it. |
||||
|
|
|
Because the C++ standard library isn't all that complete. |
||
|
|
|
|
Anything with Kevlin Henney's involvement should be taken note of. |
||
|
|
|
|
Boost basically the synopsis of what the Standard will become, besides with all the peer review and usage that Boost gets you can be pretty sure your getting quite a good deal for your dependencies. However most shops don't use Boost, because its an External Dependency. And in reality reducing External dependencies is very important as well. |
||
|
|
|
|
Boost is to C++ sort of like .NET Framework is to C#, but maybe on a smaller scale. |
||
|
|
|
|
I use the filesystem library quit a bit, and the boost::shared_ptr is pretty nifty. I hear it does other things too. |
||
|
|
