vote up 6 vote down star
1

Hi,

I came across this code:

void f(const std::string &s);

And then a call:

f( *((std::string*)NULL) );

And I was wondering what others think of this construction, it is used to signal that function f() should use some default value (which it computes) instead of some user provided value.

I am not sure what to think of it, it looks weird but what do you think of this construction?

flag
Definitely weird. – SDX2000 Mar 18 at 12:03
Not just weird - evil. Null references are a bug to be avoided at all cost. – Mark Ransom Mar 18 at 22:14

7 Answers

vote up 38 vote down check

No. It is undefined behaviour and can lead to code to do anything (including reformatting you hard disk, core dumping or insulting your mother).

If you need to be able to pass NULL, then use pointers. Code that takes a reference can assume it refers to a valid object.


Addendum: The C++03 Standard (ISO/IEC 14882, 2nd edition 2003) says, in §8.3.2 "References", paragraph 4:

A reference shall be initialized to refer to a valid object or function. [Note: in particular, a null reference cannot exist in a well-defined program, because the only way to create such a reference would be to bind it to the “object” obtained by dereferencing a null pointer, which causes undefined behavior. As described in 9.6, a reference cannot be bound directly to a bit-field. ]

[Bold added for emphasis]

link|flag
1  
...or insulting your mother. LOL! – Richard Corden Mar 18 at 12:08
That joke is Scott Meyers', right? – itsadok Mar 18 at 12:17
@itsadok: can't recall, comes up regularly for undefined behaviour in comp.std.c++ and comp.lang.c++.moderated. – Richard Mar 18 at 12:22
Well, typically it causes gargoyles to fly out of your nose, but insulting your mother is funnier! – Iraimbilanja Mar 18 at 12:36
I always heard this as monkeys fly out your nose. Often shorthanded as "a nasal-monkeys bug" – T.E.D. Mar 18 at 17:36
show 2 more comments
vote up 1 vote down
f( *((std::string*)NULL) );

This is essentially dereferencing NULL, which on most systems is #defined to be 0. Last I checked 0x00000000 is an invalid memory address for doing anything.

Whatever happened to just checking

if (std::string.length() > 0) ....
link|flag
You are right and I am only nitpicking: std::string().empty() can be faster than "std::string.length() > 0" – nusi Mar 18 at 22:20
vote up 5 vote down

You will sometimes see constructions like this in fairly esoteric template library code, but only inside a sizeof() where it is harmless.

Supposing you wanted to know the size of the return type of a function-like type F if it was passed a reference to a type T as an argument (both of those being template parameters). You could write:

sizeof(F(T()))

But what if T happens to have no public default constructor? So you do this instead:

sizeof(F(*((T *)0)))

The expression passed to sizeof never executes - it just gets analyzed to the point where the compiler knows the size of the result.

link|flag
The exception that proves the rule. Worth a +1 from me. – Mark Ransom Mar 18 at 22:13
vote up 2 vote down

As others already said: A reference has to be valid. That's why it's a reference instead of a pointer.

If you want to make f() have a default behavior, you might want to use this:

static const std::string default_for_f;

void f(const std::string &s = default_for_f)
{
    if (&s == &default_for_f)
    {
        // make default processing
    }
    else
    ...
}
...
void bar()
{
    f();              // call with default behavior
    f(default_for_f); // call with default behavior
    f(std::string()); // call with other behavior
}

You can spare the default parameter for f(). (Some people hate default parameters.)

link|flag
vote up 3 vote down

for the case you can make "empty object", which will play the role of the zero pointer

class Foo
{
static Foo empty;
public:
  static bool isEmpty( const Foo& ref )
  {
    return &ref==∅
  }
}
link|flag
vote up 4 vote down

I'm curious - does function 'f' actually check for this condition? Because if it doesn't, and it tries to use the string, then this is clearly going to crash when you try to use it.

And if 'f' does check the reference for NULL, then why isn't it just using a pointer? Is there some hard and fast rule that you won't use pointers and some knucklehead obeyed the letter of the law without thinking about what it meant?

I'd just like to know...

link|flag
Yes, f actually checks for this condition ( if (&s == NULL) ... ) I think they used a reference to keep the interface consistent. And if they used a pointer then they can not use f("hello") Anyway, it is just another example of the quality of the code I found it in... – rve Mar 18 at 15:39
vote up 2 vote down

Is using NULL references OK?

No, unless you do not like your boss and your job ;)

This is something VERY bad. One of most important point of reference that it can't be NULL (unless you force it)

link|flag

Your Answer

Get an OpenID
or

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