I saw that nullptr was implemented in Visual Studio 2010. I like the concept and want to start using it as soon as possible; however GCC does not support it yet. My code needs to run on both (but doesn't have to compile with other compilers).

Is there a way to "emulate" it? Something like:

#define nullptr NULL

(That obviously wouldn't work well at all, it's just to show what I mean.)

link|improve this question
feedback

4 Answers

The Official proposal has a workaround -

const                        // this is a const object...
class {
public:
  template<class T>          // convertible to any type
    operator T*() const      // of null non-member
    { return 0; }            // pointer...
  template<class C, class T> // or any type of null
    operator T C::*() const  // member pointer...
    { return 0; }
private:
  void operator&() const;    // whose address can't be taken
} nullptr = {};              // and whose name is nullptr
link|improve this answer
Thanks. do you also know if there's a way to detect if nullptr is implemented, without relying on the version of __cplusplus (because technically I'm using C++0x, and nullptr isn't there) – nuzz Mar 10 '10 at 19:33
7  
@nuzz: Then you aren't using C++0x. :) – Bill Mar 10 '10 at 19:34
1  
Well, I'm using a part of C++0x ;) – nuzz Mar 10 '10 at 20:01
1  
just keep a tab on compiler implementation status of c++0x. – N 1.1 Mar 10 '10 at 20:05
I think nuzz's question is, can this be detected, so the code would use the built-in nullptr instead of the emulated one if implemented? – UncleBens Mar 10 '10 at 20:31
show 5 more comments
feedback

It looks like gcc supports nullptr as of 4.6.

link|improve this answer
feedback

Also, gcc (actually g++) has had an extension __null for years. This was counted as industry implementation experience when the nullptr proposal came out.

The __null extension can detect special cases and warn about them such as accidentally passing NULL to a bool parameter, when it was intended to be passed to a pointer parameter (changes made to a function, forgot to adapt the call side).

Of course this isn't portable. The template solution above is portable.

link|improve this answer
feedback

It looks by gcc 4.6.1 (Ubuntu 11.11 oneiric), nullptr has been added.

A quick, recursive sed find-and-replace on my hpp/cpp files worked fine for me:

find . -name "*.[hc]pp" | xargs sed -i 's/NULL/nullptr/g'
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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