vote up 3 vote down star

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< boost::shared_ptr<Foo> > vec;
vec.push_back(boost::shared_ptr<Foo>());

Note: I may push back a lot of such objects. Should I declare a global static nullPtr object somewhere? That way only one of them would have to be constructed:

boost::shared_ptr<Foo> nullPtr;
flag
good news from the next C++ standard: there, you can write "vec.emplace_back();" and get a null pointer append :) – Johannes Schaub - litb Mar 7 at 4:24

4 Answers

vote up 7 vote down

Your suggestion (calling the shared_ptr<T> constructor with no argument) is correct. (Calling the constructor with the value 0 is equivalent.) I don't think that this would be any slower than calling vec.push_back() with a pre-existing shared_ptr<T>, since construction is required in both cases (either direct construction or copy-construction).

But if you want "nicer" syntax, you could try the following code:

class {
public:
    template<typename T>
    operator shared_ptr<T>() { return shared_ptr<T>(); }
} nullPtr;

This declares a single global object nullPtr, which enables the following natural syntax:

shared_ptr<int> pi(new int(42));
shared_ptr<SomeArbitraryType> psat(new SomeArbitraryType("foonly"));

...

pi = nullPtr;
psat = nullPtr;

Note that if you use this in multiple translation units (source files), you'll need to give the class a name (e.g. _shared_null_ptr_type), move the definition of the nullPtr object to a separate .cpp file, and add extern declarations in the header file where the class is defined.

link|flag
nice idea dude. i had to +1 that :p but note the answer over here stackoverflow.com/questions/395685/… – Johannes Schaub - litb Mar 7 at 4:45
Thanks guys. :) Looking at litb's post suggests that the class should really be named though. – j_random_hacker Mar 7 at 4:56
+1 for evil c++ hackage – JaredPar Mar 7 at 13:23
some silly names: nullPtrT, NullPtrType, nullPtr_t . whatever :) i found they append a _t when there is only one instance of something (like, nothrow_t and nullptr_t). – Johannes Schaub - litb Mar 7 at 18:04
another idea what to do when different TUs are involved: for avoiding static initialization fiasco you could also create a nullPtr() function, that returns an object of your null class. so you don't run into initialization order problems when something of a different TU uses your null object. – Johannes Schaub - litb Mar 8 at 3:40
show 3 more comments
vote up 3 vote down

You could declare a global nullPtr for shared_ptr<Foo>. But if you pollute the global namespace, what would you call the global nullPtr for shared_ptr<Bar>?

Typically I declare the null ptr as a static in the class of the pointer.

#include <boost\shared_ptr.hpp>

class Foo; // forward decl
typedef boost::shared_ptr<Foo> FooPtr;
class Foo
{
public:
    static FooPtr Null;
}
...
// define static in cpp file
FooPtr Foo::Null;
...
// use Foo Null
vec.push_back(Foo::Null);

That way each class has a static Null.

link|flag
You can get a more natural syntax by using a templated conversion operator on a global variable. <plug>See my answer...</plug> :) – j_random_hacker Mar 7 at 4:38
vote up 0 vote down

Well, this is legal:

shared_ptr<Foo> foo;  /* don't assign */

And in this state, it doesn't point to anything. You can even test this property:

if (foo) {
    // it points to something
} else {
    // no it doesn't
}

So why not do this:

std::vector < shared_ptr<Foo> > vec;
vec.push_back (shared_ptr<Foo>);   // push an unassigned one
link|flag
vote up 0 vote down

Yes, declare a global static null pointer.

link|flag

Your Answer

Get an OpenID
or

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