Talk:Null object

From Rosetta Code
Revision as of 12:53, 5 August 2008 by Ce (talk | contribs) (some examples are incorrect)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The C anc C++ examples don't really fit the task description (and it's not possible to do so, because C and C++ don't know a generic null object). What you can have is a null pointer, which is a pointer which doesn't point to any object (and that is indeed what NULL is for). The closest to a null object in C++ would be an empty boost::optional from the boost library.

Note that comparison to NULL may compile for non-pointer objects, but will in general not have the desired semantics: If NULL is defined as 0 (possible in C, more or less required in C++), then comparing any numeric object (or any other object with conversion from or to int) will actually compare the value of the object with zero.

Strictly speaking the Java example is incorrect as well (it doesn't test for a null object, but for a null reference), but since in Java objects are always accessed trough references, this distinction is probably mostly academic (note, however, that built-in fundamental types are not objects in the Java sense, and the null test isn't possible for them).

I don't know Ada, but I suspect the Ada example to be incorrect as well. --Ce 12:53, 5 August 2008 (UTC)