C++ References
C++ References
C++ References
A reference variable is an alias, that is, another name for an already existing variable. Once a
reference is initialized with a variable, either the variable name or the reference name may be
used to refer to the variable.
References vs Pointers
References are often confused with pointers but three major differences between references
and pointers are −
You cannot have NULL references. You must always be able to assume that a
reference is connected to a legitimate piece of storage.
Once a reference is initialized to an object, it cannot be changed to refer to another
object. Pointers can be pointed to another object at any time.
A reference must be initialized when it is created. Pointers can be initialized at any time.
int i = 17;
int& r = i;
Read the & in these declarations as reference. Thus, read the first declaration as "r is an
integer reference initialized to i" and read the second declaration as "s is a double reference
initialized to d.". Following example makes use of references on int and double −
Live Demo
#include <iostream>
int main () {
int i;
double d;
https://www.tutorialspoint.com/cplusplus/cpp_references.htm 1/2
10/13/21, 10:53 AM C++ References
int& r = i;
double& s = d;
i = 5;
d = 11.7;
return 0;
When the above code is compiled together and executed, it produces the following result −
Value of i : 5
Value of i reference : 5
Value of d : 11.7
References are usually used for function argument lists and function return values. So following
are two important subjects related to C++ references which should be clear to a C++
programmer −
1 References as Parameters
C++ supports passing references as function parameter more safely than
parameters.
https://www.tutorialspoint.com/cplusplus/cpp_references.htm 2/2