On 5/18/2013 9:06 PM, Jonathan M Davis wrote:
The closest that there is is C++'s references, which aren't rebindable and in many ways act more like aliases than pointers.
You can trivially create null references in C++: int* p = NULL; int& r = *p;
On 5/18/2013 9:06 PM, Jonathan M Davis wrote:
The closest that there is is C++'s references, which aren't rebindable and in many ways act more like aliases than pointers.
You can trivially create null references in C++: int* p = NULL; int& r = *p;