Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

44
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 ...
5
votes
2answers
236 views

Can boost::smart_ptr be used in polymorphism?

Can boost::smart_ptr such as scoped_ptr and shared_ptr be used in polymorphism? class SomeClass { public: SomeClass() { a_ptr.reset(new SubClass); } private: ...
5
votes
3answers
160 views

sort order of boost::weak_ptr after expiring?

For boost::weak_ptr the operator< is defined, so that it can be used in associative containers. My question is: Is the sort order of several weak_ptr objects stable even when some of them change ...
4
votes
2answers
200 views

using smart pointers with “this”

I'm learning the use of boost smart pointers but I'm a bit confused about a few situations. Let's say I'm implementing a state machine where each state is implemented by a single update method. Each ...
2
votes
1answer
93 views

What is going on here?

This doesn't compile, #include <boost/intrusive_ptr.hpp> class X { public: void intrusive_ptr_add_ref(X* blah) { } void intrusive_ptr_release(X * blah) { } }; int main() { ...
2
votes
3answers
110 views

Does boost::scoped_ptr violate the guideline of logical constness

In boost::scoped_ptr operator* and operator-> are declared const functions, though they return T& and T* which potentially allows clients to change the underlying data. This violates the idea ...
2
votes
1answer
311 views

Tips on debugging SWIG-wrapped C++ code in Eclipse?

I have a large body of C++ code that I've wrapped with SWIG and am calling it from Java. The C++ code makes liberal use of boost smart pointers. Some of my JUnit tests complete but then experience ...
2
votes
1answer
170 views

Is there a generic “clean-up” class in boost?

I simply want a class that does this: class cleanup : boost::noncopyable { public: typedef boost::function0<void> function; explicit cleanup( function f ) : func( f ) { } ~cleanup() ...
1
vote
1answer
321 views

How to use boost::smart_ptr in polymorphism?

Boost smart pointers can be used with polymorphism, but how do you cast the subclass back to the pointer? using namespace boost; // ... shared_ptr<SuperClass> a_ptr(new SubClass); // ... ...
0
votes
1answer
67 views

boost::smart_ptr and COW containers

I'm using boost::scoped_array in a container that I want to make copy-on-write but I fear that scoped_array won't work. Which boost::smart_ptr container is closest to cow-safe scoped array?
0
votes
2answers
277 views

passing shared_ptr to std::fstream * EDIT

i had some problem to understand the shared_ptr doc since i am newbie in c++. I hope you could help me with my example code: #include <iomanip> #include <string> #include <iostream> ...
0
votes
1answer
21 views

Reading a boost shared_ptr atomically

I have 2 threads that access this one object. Thread A: updates a boost hared_ptr member Thread B: reads that boost shared_ptr member Since a shared_ptr isn't an integer/real pointer type, it cannot ...