struct Div { int i; int j; }; class A { public: A(); Div& divs; };
In my constructor definition, I have
In "English": a reference refers to something. It cannot refer to nothing (null). That's why references are safer to use then pointers.