Re: what's the difference?
On Apr 19, 4:47 pm, "marcin.sfi...@gmail.com"
<marcin.sfi...@gmail.com> wrote:
Saying that reference cannot be null is misleading. For example:
void function(MyClass& obj) {
obj.method();
}
MyClass* obj = nullptr;
... // by mistake no valid address to MyClass object was assigned
... // to obj pointer
function(*obj); // there will be no runtime check preventing creation
// of reference from null pointer
Actually, saying this is misleading as well. The very expression
(*obj) already results in U.B.; its result may well be a "null
reference" in a particular implementation, but at that point anything
that happens is already beyond the coverage of the Standard. On the
other hand, a compliant C++ implementation is well within its rights
to perform a null check there.
To summarize: there's no such thing as a null reference, since
dereferencing a null pointer is U.B., and that's the only way to
obtain such a reference; however, most existing implementations do not
perform any checks, so you can get a "null reference" in a particular
implementation in practice (which is a possibility covered by saying
that it's U.B.).
If there is a possibility that someone will use null pointer on
your function taking reference, you should handle this. For example:
void function(MyClass& obj) {
assert (&obj != nullptr);
obj.method();
}
No, please don't do that. There is no possibility because anyone would
pass a "null reference" to such a function, because even if he does,
the mistake is already at the point of dereference (i.e. operator*),
and not at the call.
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]