Boost is a large collection of high-quality libraries intended for use in C++. Boost is free, and is often considered a "second standard library".

learn more… | top users | synonyms

152
votes
60answers
13k views

What is Boost missing?

After spending most of my waking time on Stack Overflow, for better or for worse, I've come to notice how 99% of the C++ questions are answered with "use boost::wealreadysolvedyourproblem", but ...
89
votes
13answers
9k views

Is there a reason to not use Boost?

I had this discussion with my colleague today about using Boost in our new C++ project. He did not agreed to use Boost as he thinks that Boost is huge and another point he added was that Why did ...
80
votes
30answers
9k views

Hidden Features and Dark Corners of STL?

C++ developers, all know the basics of C++: Declarations, conditionals, loops, operators, etc. Some of us even mastered the stuff like templates, object model, complex I/O, etc. But what are the ...
71
votes
8answers
40k views

How to use Boost in Visual Studio 2010

What is a good step by step explanation on how to use Boost in an empty project in Visual Studio 2010.
68
votes
24answers
6k views

Most used parts of Boost

When I discovered boost::lexical_cast I thought to myself "why didn't I know about this sooner!" - I hated having to write code like stringstream ss; ss << anIntVal; mystring = ss.str(); ...
58
votes
0answers
2k views
+50

more spirit madness - parser-types (rules vs int_parser<>) and meta-programming techniques

The question is in bold at the bottom, the problem is also summarized by the distillation code fragment towards the end. I am trying to unify my type system (the type system does to and from from ...
51
votes
3answers
8k views

what is the usefulness of enable_shared_from_this

I ran across enable_shared_from_this while reading the Boost.Asio examples and after reading the documentation I am still lost for how this should correctly be used. Can someone please give me an ...
49
votes
8answers
45k views

Boost Thread tutorials

Not really a question, more of a reference list: Boost.Thread was heavily modified since 1.34, to conform to upcoming C++0x standard. Thus, most tutorials I can find on the web can be considered ...
46
votes
20answers
5k views

Boost considered harmful?

Lots of the answers to C++ questions here contain the response: "You should be using boost::(insert your favourite smart pointer here) or even better boost::(insert your favourite mega ...
46
votes
6answers
18k views

Best documentation for Boost:asio?

The documentation available on the boost website is... limited. From what I've been able to read, the general consensus is that it is simply difficult to find good documentation on the boost::asio ...
43
votes
12answers
2k views

Code reading: where can I read great, modern, and well-documented C++ code?

Reading code is one of the best ways to learn new idioms, tricks, and techniques. Sadly it's very common to find badly written C++ code. Some use C++ as if it was C, others as if it was Java, some ...
40
votes
11answers
4k views

What are the advantages of using the C++ Boost libraries?

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?
37
votes
6answers
7k views

smart pointers (boost) explained

What is the difference between the following set of pointer? When do you use each pointer in a production code, if at all? Examples would be appreciated! 1.scoped_ptr 2.shared_ptr 3.weak_ptr ...
37
votes
5answers
13k views

Getting a boost::shared_ptr for this

I am making extensive use of boost:shared_ptr in my code. In fact, most of the objects that are allocated on the heap are held by a shared_ptr. Unfortunately this means that I can't pass this into any ...
34
votes
2answers
1k views

Understanding boost::disjoint_sets

I need to use boost::disjoint_sets, but the documentation is unclear to me. Can someone please explain what each template parameter means, and perhaps give a small example code for creating a ...
31
votes
4answers
9k views

64-bit version of Boost for 64-bit windows

Is there a version of 64-bit Boost library for VS2008 ? Or do I have to compile one myself? if, so, does anyone have experience with it?
30
votes
3answers
3k views

Boost Statechart vs. Meta State Machine

Apparently boost contains two separate libraries for state machines: Statechart and Meta State Machine (MSM). The taglines give very similar descriptions: Boost.Statechart - Arbitrarily complex ...
30
votes
13answers
20k views

CSV parser in C++

All I need is a good CSV file parser for C++. At this point it can really just be a comma-delimited parser (ie don't worry about escaping new lines and commas). The main need is a line-by-line ...
30
votes
13answers
11k views

C++ - passing references to boost::shared_ptr

If I have a function that needs to work with a shared_ptr, wouldn't it be more efficient to pass it a reference to it (so to avoid copying the shared_ptr object)? What are the possible bad side ...
29
votes
4answers
20k views

How to execute a command and get output of command within C++?

I am looking for a way to get the output of a command when it is run from within a C++ program. I have looked at using the system() function, but that will just execute a command. Here's an example ...
28
votes
2answers
2k views

What C++ Smart Pointer Implementations are available?

Comparisons, Pros, Cons, and When to Use? This is a spin-off from a garbage collection thread where what I thought was a simple answer generated a lot of comments about some specific smart pointer ...
28
votes
3answers
5k views

How to use the boost library (including shared_ptr) with the Android NDK and STLport

This is more of an answer than a question, because I've figured it out, at least as far as cleanly compiling the library. The main issue for me was to get shared_ptr working. Ingredients: Boost v. ...
28
votes
9answers
8k views

Very poor boost::lexical_cast performance

Windows XP SP3. Core 2 Duo 2.0 GHz. I'm finding the boost::lexical_cast performance to be extremely slow. Wanted to find out ways to speed up the code. Using /O2 optimizations on visual c++ 2008 and ...
27
votes
17answers
1k views

Does using large libraries inherently make slower code?

I have a psychological tic which makes me reluctant to use large libraries (like GLib or Boost) in lower-level languages like C and C++. In my mind, I think: Well, this library has thousands of ...
27
votes
6answers
11k views

Mixing Qt and Boost

I'm looking at starting a project in C++ using the Qt 4 framework (a cross-platform GUI is required). I've heard great things about the Boost libraries from friends and online. I've started reading ...
25
votes
13answers
4k views

What are potential dangers when using boost::shared_ptr?

What are some ways you can shoot yourself in the foot when using boost::shared_ptr? In other words, what pitfalls do I have to avoid when I use boost::shared_ptr?
25
votes
1answer
20k views

how boost::function and boost::bind work

I dislike haveing magic boxes scattered all over my code...how exactly do these two classes work to allow basicly any function to be mapped to a function object even if the function<> has a ...
25
votes
12answers
3k views

Boost Library

Since I have started using this site, I keep hearing about the Boost library. I am wondering what are some of the major benefits of the Boost library (hence why should I use it) and how portable is ...
24
votes
11answers
26k views

Boost and XML (c++)

Is there any good way (and a simple way too) using boost to read and write xml files? I can't seem to find any simple sample to read xml files using boost? (can you point me some simple sample that ...
24
votes
3answers
8k views

Debugging Best Practices for C++ STL/Boost with gdb

Debugging with gdb, any c++ code that uses STL/boost is still a nightmare. Anyone who has used gdb with STL knows this. For example, see sample runs of some debugging sessions in code here. I am ...
23
votes
2answers
965 views

Is it smart to replace boost::thread and boost::mutex with c++11 equivalents?

Motivation: reason why I'm considering it is that my genius project manager thinks that boost is another dependency and that it is horrible because "you depend on it"(I tried explaining the quality ...
23
votes
6answers
3k views

Exposing a C++ API to Python

I'm currently working on a project were I had to wrap the C++ classes with Python to be able to script the program. So my specific experience also involved embedding the Python interpreter in our ...
22
votes
4answers
8k views

static_cast with boost::shared_ptr?

What is the equivalent of a static_cast with boost::shared_ptr? In other words, how do I have to rewrite the following Base* b = new Base(); Derived* d = static_cast<Derived*>(b); when ...
22
votes
6answers
11k views

NULL pointer with boost::shared_ptr?

What's the equivalent to the following: std::vector<Foo*> vec; vec.push_back(NULL); when dealing with boost::shared_ptr? Is it the following code? std::vector< ...
22
votes
6answers
4k views

How to learn boost?

I've heard so many comments on Stack Overflow and other places about the boost libraries that I finally decided to learn them. Can anyone recommend me some tutorial or online book?
20
votes
5answers
695 views

Should I switch from using boost::shared_ptr to std::shared_ptr?

I would like to enable support for C++0x in GCC with -std=c++0x. I don't absolutely necessarily need any of the currently supported C++0x features in GCC 4.5 (and soon 4.6), but I would like to start ...
20
votes
15answers
22k views

How to make Visual Studio Pause after executing a console app in debug mode?

I have a collection of boost unit tests I want to run as a console application. When I'm working on the project and I run the tests I would like to be able to debug the tests and I would like to have ...
19
votes
2answers
2k views

Does Qt work well with STL & Boost?

I am interested in learning Qt. I am fairly good with C++, STL and Boost. I like STL/Boost style very much, and I use them with C++ whenever I can in uni projects. However, I always miss the GUI. It ...
19
votes
10answers
2k views

Is it reasonable to have Boost as a dependency for a C++ open source project?

Boost is meant to be the standard non-standard C++ library that every C++ user can use. Is it reasonable to assume it's available for an open source C++ project, or is it a large dependency too far?
18
votes
2answers
181 views

Is there a portable wrapper for C++ type_info that standardizes type name string format?

The format of the output of type_info::name() is implementation specific. namespace N { struct A; } const N::A *a; typeid(a).name(); // returns e.g. "const struct N::A" but compiler-specific ...
18
votes
6answers
1k views

Why is std::function not equality comparable?

This question also applies to boost::function and std::tr1::function. std::function is not equality comparable: #include <functional> void foo() { } int main() { ...
18
votes
4answers
5k views

make shared_ptr not use delete

in my code i would like boost::shared_ptr not to call delete but call ptr->deleteMe() instead. Also i have a few C styled functions that return a ptr. Can i make it call lib_freeXYZ(ptr); instead of ...
17
votes
2answers
298 views

Why is boost::checked_delete “intentionally complex”?

So I was looking through some boost source code and came across this: (from <boost/checked_delete.hpp>) template<class T> inline void checked_delete(T * x) { // intentionally complex ...
17
votes
5answers
714 views

why does boost::noncopyable require inheritance

Adding any noncopyable member to a class would prevent the automatic generation of copy construction and assignment operator. Why does boost require inheritance to use noncopyable? I think I am not ...
17
votes
3answers
454 views

why is unbounded_array more efficient than vector?

It says here that The unbounded array is similar to a std::vector in that in can grow in size beyond any fixed bound. However unbounded_array is aimed at optimal performance. Therefore ...
17
votes
2answers
5k views

A good example for boost::algorithm::join

I recently wanted to use boost::algorithm::join but I couldn't find any usage examples and I didn't want to invest a lot of time learning the Boost Range library just to use this one function. Can ...
17
votes
5answers
909 views

What is boost's shared_ptr(shared_ptr<Y> const & r, T * p) used for?

boost::shared_ptr has an unusual constructor template<class Y> shared_ptr(shared_ptr<Y> const & r, T * p); and I am a little puzzled as to what this would be useful for. Basically ...
17
votes
6answers
11k views

Building Boost for static linking (MinGW)

I'm building Boost (I'm using System and FileSystem) for MinGW using bjam: bjam --toolset=gcc stage And it builds fine, but I want to be able to statically link to it (I have to have a single file ...
17
votes
13answers
4k views

Boost::multi_array performance question

I am trying to compare the performance of boost::multi_array to native dynamically allocated arrays, with the following test program: #include <windows.h> #define _SCL_SECURE_NO_WARNINGS ...
16
votes
8answers
571 views

Are longer sleeps (in C++) less precise than short ones

I have a task to do something every "round" minute(at xx:xx:00) And I use something like const int statisticsInterval=60; time_t t=0; while (1) { if (abs(t-time(NULL)==0)) //to ...

1 2 3 4 5 101