Tagged Questions

47
votes
24answers
3k 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 …
33
votes
20answers
3k 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 …
30
votes
30answers
4k 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 …
29
votes
13answers
3k views

Is there a reason to not use Boost?

I had this dicussion 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 Chrome …
24
votes
10answers
2k 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?
18
votes
15answers
2k 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(); Now …
17
votes
6answers
969 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 …
17
votes
12answers
1k 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 …
15
votes
3answers
2k 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 …
13
votes
4answers
3k 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 …
13
votes
10answers
883 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?
12
votes
12answers
910 views

What are the Best Components of Boost?

I've been browsing revision 1.38.0 of the Boost libraries, in an attempt to decide if there are enough jewels there to justify negotiating my company's external software approval process. In the …
12
votes
6answers
955 views

How to learn boost

I've heard so many comments in SO and other places about boost libraries that I finally decided to learn them. Can anyone recommend me some tutorial or online book?
11
votes
4answers
643 views

Preparing for the next C++ standard

The spate of questions regarding BOOST_FOREACH prompts me to ask users of the Boost library what (if anything) they are doing to prepare their code for portability to the proposed new C++ standard …
11
votes
9answers
622 views

Should I become proficient with STL libraries before learning BOOST alternatives?

Does it make sense to restrict yourself to the STL libraries when learning C++ and then tackle boost and its additions after you have become fairly proficient with vanilla C++? Or should you dive …

1 2 3 4 5 52 next
15 30 50 per page