Difference between pointer variable and reference variable in C++ - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T09:33:43Zhttp://stackoverflow.com/feeds/question/57483http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/57483/difference-between-pointer-variable-and-reference-variable-in-c35Difference between pointer variable and reference variable in C++Prakash2008-09-11T20:03:57Z2009-11-01T14:56:28Z
<p>I know references are syntactic sugar, so easier code to read and write :)</p>
<p>But what are the differences?</p>
<p>Summary from answers and links below:</p>
<ol>
<li>A pointer can be re-assigned any number of times while a reference can not be reassigned after initialization. </li>
<li>A pointer can point to NULL while reference can never point to NULL</li>
<li>You can't take the address of a reference like you can with pointers</li>
<li>There's no "reference arithmetics" (but you can take the address of an object pointed by a reference and do pointer arithmetics on it as in &obj + 5).</li>
</ol>
<p>To clarify a misconception:</p>
<blockquote>
<p><em>The C++ standard is very careful to avoid dictating how a compiler must
implement references, but every C++
compiler implements
references as pointers. That is, a
declaration such as:</em></p>
</blockquote>
<pre><code>int &ri = i;
</code></pre>
<blockquote>
<p><em>allocates the same amount of storage
as a pointer, and places the address
of i into that storage.</em></p>
</blockquote>
<p><strong><em>So pointer and reference occupies same amount of memory</em></strong></p>
<p>As a general rule, </p>
<ul>
<li>Use references in function parameters and return types to define attractive interfaces. </li>
<li>Use pointers to implement algorithms and data structures.</li>
</ul>
<p>Interesting read:</p>
<ul>
<li>My alltime favorite <a href="http://yosefk.com/c++fqa/ref.html" rel="nofollow">C++ FQA lite</a></li>
<li><a href="http://www.embedded.com/story/OEG20010311S0024" rel="nofollow">References vs. Pointers</a></li>
<li><a href="http://www.embedded.com/story/OEG20010221S0094" rel="nofollow">An Introduction to References</a></li>
<li><a href="http://www.embedded.com/story/OEG20010222S0050" rel="nofollow">References and const</a></li>
</ul>
http://stackoverflow.com/questions/57483/difference-between-pointer-variable-and-reference-variable-in-c/57490#574901Answer by Arkadiy for Difference between pointer variable and reference variable in C++Arkadiy2008-09-11T20:07:29Z2008-09-14T14:28:45Z<p>Apart from syntactic sugar, a reference is a const pointer (not pointer to const thing, a const pointer). You must establish what it refers to when you declare the reference variable, an you cannot change it later.</p>
http://stackoverflow.com/questions/57483/difference-between-pointer-variable-and-reference-variable-in-c/57492#5749242Answer by Brian R. Bondy for Difference between pointer variable and reference variable in C++Brian R. Bondy2008-09-11T20:08:20Z2009-11-01T14:56:28Z<p>1) A pointer can be re-assigned: </p>
<pre><code>int x = 5;
int y = 6;
int *p;
p = &x;
p = &y;
*p = 10;
assert(x == 5);
assert(y == 10);
</code></pre>
<p>A reference cannot, and must be assigned at initialization:</p>
<pre><code>int x = 5;
int y = 6;
int &r = x;
</code></pre>
<p>2) A pointer has its own memory address and size on the stack (4 bytes on x86), whereas a reference shares the same memory address but also takes up some space on the stack. Since a reference has the same address as the original variable itself, it is safe to think of a reference as another name for the same variable. Note: What a pointer points to can be on the stack or heap. Ditto a reference. My claim in this statement is not that a pointer must point to the stack. A pointer is just a variable that holds a memory address. This variable is on the stack. Since a reference has its own space on the stack, and since the address is the same as the variable it references. More on <a href="http://stackoverflow.com/questions/79923/what-and-where-are-the-stack-and-heap#79936">stack vs heap</a>. This implies that there is real a address of a reference that the compiler will not tell you. </p>
<pre><code>int x = 0;
int &r = x;
int *p = &x;
int *p2 = &r;
assert(p == p2);
</code></pre>
<p>3) you can have pointers to pointers to pointers offering extra levels of indirection. Whereas references only offer 1 level of indirection. </p>
<pre><code>int x = 0;
int y = 0;
int *p = &x;
int *q = &y;
int **pp = &p;
pp = &q;//*pp = q
**pp = 4;
assert(y == 4);
assert(x == 0);
</code></pre>
<p>4) Pointer can be assigned NULL directly, whereas reference cannot. If you try hard enough, and you know how, you can make the address of a reference NULL. Likewise, if you try hard enough you can have a reference to a pointer, and then that reference can contain NULL.</p>
<pre><code>int *p = NULL;
int &r = NULL; <--- compiling error
</code></pre>
<p>5) Pointers can iterate over an array, you can use ++ to go to the next item that a pointer is pointing to, and + 4 to go to the 5th element. This is no matter what size the object is that the pointer points to.</p>
<p>6) A pointer needs to be dereferenced with * to access the memory location it points to, whereas a reference can be used directly. A pointer to a class/struct uses -> to access it's members whereas a reference uses a .</p>
<p>7) A pointer is a variable that holds a memory address. Regardless of how a reference is implemented, a reference has the same memory address the item it references.</p>
<p>8) References cannot be stuffed into an array, whereas pointers can be (Mentioned by user @litb)</p>
http://stackoverflow.com/questions/57483/difference-between-pointer-variable-and-reference-variable-in-c/57502#575026Answer by RichS for Difference between pointer variable and reference variable in C++RichS2008-09-11T20:12:35Z2008-09-11T20:12:35Z<p>Another benefit, is that a reference can never be NULL. No more exhaustive parameter checking :-).</p>
http://stackoverflow.com/questions/57483/difference-between-pointer-variable-and-reference-variable-in-c/57527#575270Answer by Rob Walker for Difference between pointer variable and reference variable in C++Rob Walker2008-09-11T20:24:43Z2008-09-11T20:24:43Z<p>@axs6791 I'm not sure what you mean exactly. References can be assigned to a derived class:</p>
<pre><code>class A
{
};
class B : public A
{
};
void foo()
{
B b;
A& a = b;
}
</code></pre>
<p>What case can you do with pointers that wouldn't work with references?</p>
http://stackoverflow.com/questions/57483/difference-between-pointer-variable-and-reference-variable-in-c/57540#575402Answer by Turbulent Intellect for Difference between pointer variable and reference variable in C++Turbulent Intellect2008-09-11T20:30:46Z2008-09-16T13:05:02Z<p>A very simple answer is that the only really significant things that a reference has in common with a pointer are:</p>
<ol>
<li>A reference can be made to refer
to a pre-existing memory location,
which a normal variable cannot.</li>
<li>A reference can be of a type that is a
parent or child class of the
original variable's type.</li>
</ol>
<p>Otherwise, a reference basically acts like the original variable. It is effectively an alias to the original variable.</p>
http://stackoverflow.com/questions/57483/difference-between-pointer-variable-and-reference-variable-in-c/57656#576565Answer by Mark Ransom for Difference between pointer variable and reference variable in C++Mark Ransom2008-09-11T21:06:49Z2009-02-27T22:44:09Z<p>Contrary to popular opinion, it is possible to have a reference that is NULL.</p>
<pre><code>int * p = NULL;
int & r = *p;
r = 1; // crash! (if you're lucky)
</code></pre>
<p>Granted, it is much harder to do with a reference - but if you manage it, you'll tear your hair out trying to find it.</p>
<p>Edit: a few clarifications.</p>
<p>Technically, this is an invalid reference, not a null reference. C++ doesn't support null references as a concept, as you might find in other languages. There are other kinds of invalid references as well.</p>
<p>The actual error is in the dereferencing of the NULL pointer, prior to the assignment to a reference. But I'm not aware of any compilers that will generate any errors on that condition - the error propagates to a point further along in the code. That's what makes this problem so insidious. Most of the time, if you dereference a NULL pointer, you crash right at that spot and it doesn't take much debugging to figure it out.</p>
<p>My example above is short and contrived. Here's a more real-world example.</p>
<pre><code>class MyClass
{
...
virtual void DoSomething(int,int,int,int,int);
};
void Foo(const MyClass & bar)
{
...
bar.DoSomething(a,Long,list,of,parameters); // crash occurs here - obvious why?
}
MyClass * GetInstance()
{
if (somecondition)
return NULL;
...
}
MyClass * p = GetInstance();
Foo(*p);
</code></pre>
http://stackoverflow.com/questions/57483/difference-between-pointer-variable-and-reference-variable-in-c/57734#577343Answer by Matt Price for Difference between pointer variable and reference variable in C++Matt Price2008-09-11T21:43:16Z2008-09-11T21:43:16Z<p>If you want to be really pedantic, there is one thing you can do with a reference that you can't do with a pointer: extend the lifetime of a temporary object. In c++ if you bind a const reference to a temporary object, the lifetime of that object becomes the lifetime of the reference.</p>
<pre><code>std::string s1 = "123";
std::string s2 = "456";
std::string s3_copy = s1 + s2;
const std::string& s3_reference = s1 + s2;
</code></pre>
<p>In this example s3_copy copies the temporary object that is a result of the concatenation. Whereas s3_reference in essences becomes the temporary object, it's really a reference to a temporary object that now has the same lifetime as the reference. </p>
<p>If you try this without the const it should fail to compile. You cannot bind a non-const reference to a temporary object, nor can you take its address for that matter.</p>
http://stackoverflow.com/questions/57483/difference-between-pointer-variable-and-reference-variable-in-c/57780#577800Answer by Orion Edwards for Difference between pointer variable and reference variable in C++Orion Edwards2008-09-11T22:10:49Z2008-09-11T22:10:49Z<p>You forgot the most important part</p>
<p>member-access with pointers uses -><br />
member-access with references uses .</p>
<p><code>foo.bar</code> is <em>clearly</em> superior to <code>foo->bar</code> in the same way that vi is <em>clearly</em> superior to emacs :-)</p>
http://stackoverflow.com/questions/57483/difference-between-pointer-variable-and-reference-variable-in-c/58776#587760Answer by Tyler for Difference between pointer variable and reference variable in C++Tyler2008-09-12T12:00:03Z2008-09-12T12:00:03Z<p>@<a href="#57492" rel="nofollow">Brian</a>: References can take up memory, just as pointers do.</p>
<p>For example, if you have a member variable of a class which is a reference, then every instance of the class will have memory allocated for that reference.</p>
<p>In some cases, a compiler can optimize away the need to allocate memory for a reference; and there's no nice way to get the address of a reference in your code (&my_reference just returns the address of the referred-to object). In those aspects I agree that references act as if they don't take up memory - but they can.</p>
http://stackoverflow.com/questions/57483/difference-between-pointer-variable-and-reference-variable-in-c/58883#588830Answer by van_houtte for Difference between pointer variable and reference variable in C++van_houtte2008-09-12T12:57:12Z2008-09-12T12:57:12Z<p>@<a href="#57780" rel="nofollow">Orion Edwards</a></p>
<blockquote>
<p>member-access with pointers uses -></p>
<p>member-access with references uses .</p>
</blockquote>
<p>This is not 100% true. You can have a reference to a pointer. In this case you would access members of de-referenced pointer using -></p>
<pre><code>struct Node { Node *next; };
Node *first;
// p is a reference to a pointer
void foo(Node*&p) {
p->next = first;
}
Node *bar = new Node;
foo(bar);
</code></pre>
<p>--</p>
<p>OP: Are you familiar with the concepts of rvalues and lvalues?</p>
http://stackoverflow.com/questions/57483/difference-between-pointer-variable-and-reference-variable-in-c/58996#589960Answer by Aardvark for Difference between pointer variable and reference variable in C++Aardvark2008-09-12T13:41:58Z2008-09-12T13:41:58Z<p>I use references unless I need either of these:</p>
<ul>
<li><p>Null Pointers can be used as a
sentinel value, often a cheap way to
avoid function overloading or use of
a bool.</p></li>
<li><p>You can do arithmetic on a pointer.
For example, p += offset;</p></li>
</ul>
http://stackoverflow.com/questions/57483/difference-between-pointer-variable-and-reference-variable-in-c/59636#596360Answer by Don Wakefield for Difference between pointer variable and reference variable in C++Don Wakefield2008-09-12T17:59:56Z2008-09-12T17:59:56Z<p>Another interesting use of references is to supply a default argument of a user-defined type:</p>
<pre><code>class UDT
{
public:
UDT() : val_d(33) {};
UDT(int val) : val_d(val) {};
virtual ~UDT() {};
private:
int val_d;
};
class UDT_Derived : public UDT
{
public:
UDT_Derived() : UDT() {};
virtual ~UDT_Derived() {};
};
class Behavior
{
public:
Behavior(
const UDT &udt = UDT()
) {};
};
int main()
{
Behavior b; // take default
UDT u(88);
Behavior c(u);
UDT_Derived ud;
Behavior d(ud);
return 1;
}
</code></pre>
<p>The default flavor uses the 'bind const reference to a temporary' aspect of references.</p>
http://stackoverflow.com/questions/57483/difference-between-pointer-variable-and-reference-variable-in-c/60148#601482Answer by MSN for Difference between pointer variable and reference variable in C++MSN2008-09-12T23:27:06Z2008-09-12T23:27:06Z<p>A reference on the stack doesn't take up any space at all. Or rather, it doesn't matter how much space it takes up since you can't actually see any side effect of whatever space it would take up.</p>
<p>On the other hand, one major difference between references and pointers is that temporaries assigned to const references live until the const reference goes out of scope.</p>
<p>For example:</p>
<pre><code>class scope_test
{
public:
~scope_test() { printf("scope_test done!\n"); }
};
...
{
const scope_test &test= scope_test();
printf("in scope\n");
}
</code></pre>
<p>will print:</p>
<pre><code>in scope
scope_test done!
</code></pre>
<p>This is the language mechanism that allows ScopeGuard to work.</p>
<p>MSN</p>
http://stackoverflow.com/questions/57483/difference-between-pointer-variable-and-reference-variable-in-c/101406#1014060Answer by Vincent Robert for Difference between pointer variable and reference variable in C++Vincent Robert2008-09-19T12:23:19Z2008-09-19T12:23:19Z<p>Actually, a reference is not really like a pointer.</p>
<p>A compiler keeps "references" to variables, associating a name with a memory address, that's its job to translate any variable name to a memory address when compiling.</p>
<p>When you create a reference, you only tell the compiler that you assign another name to the pointer variable, that's why references cannot "point to null", because a variable cannot be, and not be.</p>
<p>Pointers are variables, they contain the address of some other variable, or can be null. The important thing is that a pointer has a value, while a reference only has a variable that it is referencing.</p>
<p>Now some explanation of real code:</p>
<pre><code>int a = 0;
int& b = a;
</code></pre>
<p>Here you are not creating another variable that points to a, you are just adding another name to the memory content holding the value of a. This memory now has two name, a and b, and can be addressed using either name. </p>
<pre><code>void increment(int& n)
{
n = n + 1;
}
int a;
increment(a);
</code></pre>
<p>When calling a function, the compiler usually generates memory spaces for the arguments to be copied to. The function signature defines the spaces that should be created and gives the name that should be used for these spaces. Declaring a parameter as a reference just tells the compiler to use the input variable memory space instead of allocating a new memory space during the method call. It may seem strange to say that your function will be directly manipulating a variable declared in the calling scope but remember that when executing a compiled code, there is no more scope, there is just plain flat memory and your function code could manipulate any variables.</p>
<p>Now there may be some cases where your compiler may not be able to know the reference when compiling, like when using an extern variable. So a reference may or may not be implemented as a pointer in the underlying code. But in the examples I gave you, it will most likely not be implemented with a pointer.</p>
http://stackoverflow.com/questions/57483/difference-between-pointer-variable-and-reference-variable-in-c/596750#5967500Answer by Christoph for Difference between pointer variable and reference variable in C++Christoph2009-02-27T21:26:44Z2009-02-27T22:31:33Z<p><strong>What's a C++ reference (for C programmers):</strong></p>
<p>A reference can be thought of as a constant pointer (not a pointer to a constant value!) with automatic indirection - ie the compiler will apply the * operator for you.</p>
<p>All references must be initialized with a non-null value or compilation will fail. It's neither possible to get the address of a reference - the address operator will return the address of the referenced value instead - nor is it possible to do arithmetics on references.</p>
<p>C programmers might dislike C++ references, as it will no longer be obvious when indirection happens or if an argument gets passed by value or by pointer.</p>
<p>C++ programmers might dislike using pointers, as they are considered 'unsafe' - although references aren't really any safer than constant pointers - and lack the convenience of automatic indirection.</p>
<p>Consider the following statement from the 'C++ FAQ Lite':</p>
<p>"Even though a reference is often implemented using an address in the underlying assembly language, please do not think of a reference as a funny looking pointer to an object. A reference is the object. It is not a pointer to the object, nor a copy of the object. It is the object."</p>
<p>That's how some people want you to think about references. But if a reference really were the object, how could there be dangling references? In unmanaged languages, it's impossible for references to be any 'safer' than pointers - there just is no way to alias values across scope boundaries!</p>
<p>Coming from a C background, C++ references may look like a somewhat braindead concept, but one should still use them instead of pointers if possible - when in Rome...</p>
http://stackoverflow.com/questions/57483/difference-between-pointer-variable-and-reference-variable-in-c/1569931#15699310Answer by Adisak for Difference between pointer variable and reference variable in C++Adisak2009-10-15T01:57:37Z2009-10-15T01:57:37Z<p>Also, a reference that is a parameter to a function that is inlined may be handled differently than a pointer.</p>
<pre><code>void increment(int *ptrint) { (*ptrint)++; }
void increment(int &refint) { refint++; }
void incptrtest()
{
int testptr=0;
increment(&testptr);
}
void increftest()
{
int testref=0;
increment(testref);
}
</code></pre>
<p>Many compilers when inlining the pointer version one will actually force a write to memory (we are taking the address explicitly). However, they will leave the reference in a register which is more optimal.</p>
<p>Of course, for functions that are not inlined the pointer and reference generate the same code and it's always better to pass intrinsics by value than by reference if they are not modified and returned by the function.</p>