show/hide this revision's text 2 removing mistaken emphasis

A very simple answer is this: The that the only really significant things that a reference has in common with a pointer are:

  1. A reference can be made to refer to a pre-existing memory location, which a normal variable cannot.
  2. 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.

show/hide this revision's text 1

A very simple answer is this: The only things that a reference has in common with a pointer are:

  1. A reference can be made to refer to a pre-existing memory location, which a normal variable cannot.
  2. A reference can be of a type that is a parent or child class of the original variable's type.

In all other ways, a reference acts exactly like the original variable. It is effectively an alias to the original variable.