vote up 2 vote down star
2

Possible Duplicate:
How to learn boost

Possible duplicate: How to learn boost

What would you recommend for learning the C++ Boost library? I've only found one book

alt text

but it was published in 2005, so I guess it is pretty outdated.

Is there any other option, except the online docs?

flag

The Boost library is pure class. B – scope-creep Oct 3 at 15:31
1  
I have the book and found it to be only marginally useful. It is very good in explaining how different smart pointers work and how to use Boost's Regex – photo_tom Oct 3 at 15:42
duplicate: stackoverflow.com/questions/379290/… – therefromhere Oct 3 at 16:10

closed as exact duplicate by therefromhere, Pukku, Lucas McCoy, jalf, John Saunders Oct 4 at 17:35

5 Answers

vote up 6 vote down check

I would recommend learning to use it piecemeal as you need it. This seems to be the most common way to use Boost. Personally, when I need a piece of functionality and suspect that someone else has already written it, I:

  1. Google for it
  2. Look in Boost - usually returned in the google
  3. Look for an STL-based solution

If you find the functionality you need in Boost, then dig into the docs and samples until you understand how to use the library.

One of the fairly unique things about Boost is that it is a collection of relatively orthogonal components. You generally don't learn Boost. Instead, you pull something like Boost.SmartPtr into a project because you need shared pointers. When you find that you are writing command-line test tools, you find a need for Boost.Program_options so you learn how to use it instead of getopt. Since you are writing test tools, you notice that Boost.Test exists and take a look at that.

I've found that people tend to organically discover Boost instead of learn the full breadth of it. With all of that said, grab the book as it will serve as a good reference and is probably more readable than the documentation in general.

link|flag
vote up 2 vote down

Beyond the C++ Standard Library is still an excellent way to start learning Boost. It's still useful as a reference. In addition there are a couple of books which focus on Boost.MPL and Boost.Graph libraries.

link|flag
vote up 0 vote down

Personally I think experimenting on your own with the boost libraries is a great way of learning it (as I think experimenting is the best way to leang programming overall).

In the case with Boost, it got great online documentation as a complement.

link|flag
vote up 2 vote down

Boost online documentation is also pretty good. If you have basic understanding of STL and template programming, you should be able to follow the boost documentation.

Also you can see stackoverflow question How To Learn Boost

link|flag
vote up 0 vote down

I think it is good enough for the beginning. You should learn Boost concepts and fundaments, and then, when you will need to learn about something else - there is a great Boost documentation available. I really think, that for learning concepts (for example: using containers, iterators, smart pointers etc.) this book is quite good. I have bought it in the beginning of 2006, and I must admit that it was a great help when learning Boost.

link|flag

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