![]() |
VOOZH | about |
In C++, we can pass parameters to a function either by pointers or by reference. In both cases, we get the same result. So, what is the difference between Passing by Pointer and Passing by Reference in C++?
Let's first understand what Passing by Pointer and Passing by Reference in C++ mean:
Here, the memory location (address) of the variables is passed to the parameters in the function, and then the operations are performed. It is also called the call by pointer method.
Before Swap a = 45 b = 35 After Swap with pass by pointer a = 35 b = 45
It allows a function to modify a variable without having to create a copy of it. We have to declare reference variables. The memory location of the passed variable and parameter is the same and therefore, any change to the parameter reflects in the variable as well.
It is also called the Call by Reference method.
Before Swap a = 45 b = 35 After Swap with pass by reference a = 35 b = 45
Knowing the differences between passing by pointer and passing by reference is crucial for effective function design. The following table lists the major differences between the pass-by-pointer and pass-by-reference methods.
| Parameters | Pass by Pointer | Pass by Reference |
|---|---|---|
Passing Arguments | We pass the address of arguments in the function call. | We pass the arguments in the function call. |
Accessing Values | The value of the arguments is accessed via the dereferencing operator * | The reference name can be used to implicitly reference a value. |
Reassignment | Passed parameters can be moved/reassigned to a different memory location. | Parameters can’t be moved/reassigned to another memory address. |
Allowed Values | Pointers can contain a NULL value, so a passed argument may point to a NULL or even a garbage value. | References cannot contain a NULL value, so it is guaranteed to have some value. |
A reference is the same object, just with a different name and a reference must refer to an object. Since references can't be NULL, they are safer to use.
Example: The following C++ program demonstrates the differences.
0x7ffdfc7bead8 0x7ffdfc7bead4 0x7ffdfc7bead4 0x7ffdfc7bead4 0x4 7