First page Back Continue Last page Graphics
Reference Variable (cont.)
An alternative to pointers.
Essential to classes.
How they work is defined before how they are used!
You have to have a previously defined normal variable first !
int snow (12);
int & flakes = snow;
& means “reference to int”
You can use snow or flakes interchangeably!