A very simple answer is this: The that the only really significant things that a reference has in common with a pointer are:
- A reference can be made to refer to a pre-existing memory location, which a normal variable cannot.
- A reference can be of a type that is a parent or child class of the original variable's type.
In all other ways
Otherwise, a reference basically acts exactly like the original variable. It is effectively an alias to the original variable.
