Is it possible to initialize a reference member to NULL in c++?
I'm trying to something like this:
class BigClass
{
private:
Object m_inner;
public:
const Object& ReadOnly;
BigClass() : ReadOnly(NULL)
{
Do stuff.
}
};
I know I can do this if I initialize "ReadOnly" to a real reference of an object, but when I want to put in there "NULL", i get the error:
"cannot convert from 'int' to 'const Object &'
How can I solve this?
No, references cannot be
NULL
in C++.1Possible solutions include:
Object
instance that can be used to indicate "no object".[1] From the C++11 standard: