The C++11 keyword for a null pointer, it can be converted to any pointer type.

learn more… | top users | synonyms

1
vote
1answer
61 views

C++11 Setter function parameter passing nullptr

I was wondering about C++11 best practices regarding parameter passing nullptr. I want to reset a class member object by passing a nullptr to an already existing setter function. For a simple ...
1
vote
2answers
54 views

In c++11, does dynamic_cast return nullptr or 0?

I want to check the result of dynamic_cast. In c++11 (or c++0x, for compilers that support nullptr), should I compare against nullptr or 0? Does it matter, and if so, why? Is the result ...
13
votes
3answers
309 views

Are these null pointers, or are they pointers to address 0?

If I write int zero = 0; void *p1 = (void *)0; void *p2 = (void *)(int)0; void *p3 = (void *)(0 /*no-op, but does it affect the next zero?*/, 0); void *p4 = (void *)zero; // For reference, this ...
0
votes
1answer
67 views

Using Qt Creator C++ 11, nullptr is keyworded?

I'm using C++11 using Qt Creator. "warning: identifier 'nullptr' is a keyword in C++11 [-Wc++0x-compat]" "error: 'nullptr' was not declared in this scope" This is on code that works elsewhere, the ...
0
votes
2answers
79 views

Are nullptr references undefined behaviour in C++? [duplicate]

The following code fools around with nullptr pointer and reference: #include <cstdio> void printRefAddr(int &ref) { printf("printAddr %p\n", &ref); } int main() { int *ip ...
7
votes
3answers
457 views

C++11 When clearing shared_ptr, should I use reset or set to nullptr?

I have a question about C++11 best practices. When clearing a shared_ptr, should I use the reset() function with no parameter, or should I set the shared_ptr to nullptr? For example: ...
6
votes
1answer
88 views

gcc nullptr issue

I am porting existing code to compile under gcc 4.7.2 and have run into a strange issue with nullptr. I have managed to boil it down to a simple test case: #include <stdio.h> const char* ...
0
votes
3answers
54 views

Semantic of empty shared_ptr

I've noticed a strange fact about shared_ptr int* p = nullptr; std::shared_ptr<int> s(p); // create a count (1). std::shared_ptr<int> s2(s); // count go to 2. assert(s.use_count() == 2); ...
6
votes
1answer
121 views

C++ - Representing ownership via pointers

In my game engine, there are three classes: EntityCharacter, EntityVehicle and EntityVehicleSeat. EntityVehicle contains seat objects with pointers to instances of EntityCharacter. If seat object's ...
5
votes
1answer
95 views

Pointed template type deduced from a nullptr?

Considering the function : template <class T> void f(const T* const ptr); What is T for f(nullptr) ?
1
vote
1answer
98 views

C++/CLI reference not initialized to nullptr on subsequent entries into local block

I thought in C++/CLI declaring a local reference variable without an explicit initial value always initialized it to nullptr. I'm finding that this doesn't occur on the second and later entries into ...
28
votes
4answers
1k views

Why can't you take the address of nullptr?

In the C++11 standard, I don't understand the reason why taking the address of nullptr is disallowed whereas one is allowed to take the address of their own std::nullptr_t instances. Aside from the ...
0
votes
2answers
121 views

Null function pointers in a new object aren't actually nullptr

I am using C++(11) w/ Visual Studio 2012. I create windows using a custom made wrapper class. CUIWindow* winA = new CUIWindow ( NULL, TEXT("winAClassName"), TEXT("winACaption"), 200, 300 ); Each ...
34
votes
6answers
1k views

What are the advantages of using nullptr?

This piece of code conceptually does the same thing for the three pointers (safe pointer initialization): int* p1 = nullptr; int* p2 = NULL; int* p3 = 0; And so, what are the advantages of ...
2
votes
3answers
207 views

implementation safe nullptr

I'd like to keep my code compilable both on legacy C++ (C++ code using "NULL") and new C++11 standard (C++ code using "nullptr") I'm using GCC, but planning to recompile the whole codebase also for ...
0
votes
2answers
138 views

Why is the ternary operator not the same as an if-else here?

I'm using TR1's std::function to implement a simple callback mechanism. If I don't want to get called back, I register nullptr as the callback handler. This compiles and works fine: void ...
0
votes
2answers
137 views

&* for raw pointer, iterator and … std::nullptr_t

I have a template function that is enabled (through a std::enable_if) its parameter is a raw pointer, or has a std::iterator category or is a std::nullptr_t. In that function, a raw pointer (a data ...
0
votes
2answers
198 views

c++ GDI Bitmap doesn't want to load

My name is Miguel, and I'm trying to get each single pixel in one .bmp, but so far, when i initialize the bitmap, it doesn't get any value, so i guess that i have initialized it wrong. This is my ...
2
votes
1answer
189 views

What are the uses of the type `std::nullptr_t`?

I learned that nullptr, in addition to being convertible to any pointer type (but not to any integral type) also has its own type std::nullptr_t. So it is possible to have a method overload that ...
15
votes
2answers
307 views

Does the standard behavior for deleters differ between shared_ptr and unique_ptr in the case of null pointers?

OK, so first some things that might be relevant: I'm using the Clang 3.1 compiler, in C++11 mode, with the standard library set to libc++. I'm trying to familiarize myself with C++11, and in so ...
5
votes
1answer
923 views

unique_ptr, nullptr and supporting gcc 4.5.x and 4.6.x

I am working on a library with two different end users one of which is using gcc 4.5.3 and the other just moved to gcc 4.6.3. The library uses the new C++11 smart pointers (in particular unique_ptr) ...
1
vote
2answers
834 views

How to define nullptr for supporting both C++03 and C++11? [duplicate]

Possible Duplicate: “Backporting” nullptr to C++-pre-C++0x programs How to define nullptr for supporting both C++03 and C++11? Does below code is compiled with both C++03 and ...
11
votes
2answers
873 views

Is nullptr_t a default constructible type?

I can't tell from the C++11 Standard if nullptr_t has a default constructor. In other words, is the following valid?: nullptr_t n; GCC and VC++ allow the above code, but clang does not. I can't ...
24
votes
6answers
2k views

Is it safe to #define NULL nullptr?

I have seen below macro in many topmost header files: #define NULL 0 // C++03 In all over the code, NULL and 0 are used interchangeably. If I change it to. #define NULL nullptr // C++11 Will ...
3
votes
1answer
274 views

using nullptr instead of NULL when mixing C and C++

i have a very simple question... i am using the SDL API which was written in C. i am using C++. my compiler supports the keyword nullptr, and I've been reading up on it. it seems as if it is ...
5
votes
2answers
907 views

“Backporting” nullptr to C++-pre-C++0x programs

More or less what the title suggests. While I'm not yet using C++0x I'd like to be prepared for when it happens, and I'd also like to reduce the amount of code I have to rewrite to use some of its ...
4
votes
2answers
355 views

Using nullptr in API function calls?

Using C++ with Visual Studio 2010. I'm in the process of converting my NULL's to nullptr's. With my code this is fine. However if I make a call to an win api such as: __checkReturn WINOLEAPI ...
7
votes
3answers
2k views

Is NULL defined as nullptr in C++11?

Will C++11 implementations define NULLas nullptr? Would this be prescribed by the new C++ standard?
2
votes
5answers
733 views

Is nullptr not a special keyword and an object of std::nullptr_t? [duplicate]

Possible Duplicate: What exactly is nullptr? I first thought it's a keyword. My present gcc doesn't highlight nullptr in a different shade. To verify that, I wrote following: void *&p ...
11
votes
1answer
247 views

Strong typing of nullptr?

I just read an article on the C++0x standard: http://www.softwarequalityconnection.com/2011/06/the-biggest-changes-in-c11-and-why-you-should-care/ It said nullptr was strongly typed, meaning that it ...
4
votes
3answers
624 views

Perfectly emulate nullptr

I got tired of waiting for compiler support of nullptr (gcc 4.6 does but it's so new few distributions support it). So as a stop gap until nullptr is fully supported I decided to emulate it. There ...
3
votes
1answer
3k views

What C++0x Headers are supposed to define nullptr?

Now that C++0x is almost here, I've been experimenting with it, and in particular using nullptr. I haven't been able to figure out what standard header files one is supposed to include if one needs to ...
2
votes
1answer
161 views

pointers and .net pointers

I heard that NULL is equivalent to .net nullptr and that 0 is not equivalent to .net nullptr. why? I thought that NULL is a macro equal to 0 ?
1
vote
2answers
346 views

Should this use of nullptr produce a compiler error?

Is there a good reason why this code compiles without warning (and crashes when run) with Visual C++ 2010: int a = *((int*)nullptr); Static analysis should conclude that it will crash, right?
9
votes
2answers
5k views

What header file needs to be included for using nullptr in g++?

I am using g++ 4.4.1 and want to use nullptr, but I am not being able to find which header file is required to be included. It does not seem to be keyword either, because my attempt to use it is ...
0
votes
1answer
1k views

How to enable nullptr from C++0x in the Visual C++ 2010?

I wonder how can I enable the nullptr in the just released Visual Studio 2010. (C++ project, not managed). This is one of the new features but it is not available by default and looking inside the ...
36
votes
5answers
7k views

Can nullptr be emulated in gcc?

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 ...
1
vote
3answers
293 views

C++: Cannot instantiate a pointer directly

This is an SDL problem, however I have the strong feeling that the problem I came across is not related to SDL, but more to C++ / pointers in general. To make a long story short, this code doesn't ...
102
votes
7answers
37k views

What exactly is nullptr?

We now have C++11 with many new features. An interesting and confusing one (at least for me) is the new nullptr. Well, no need anymore for the nasty macro NULL. int* x = nullptr; myclass* obj = ...