up vote 163 down vote favorite
133
share [g+] share [fb]

I know references are syntactic sugar, so easier code to read and write :)

But what are the differences?

Summary from answers and links below:

  1. A pointer can be re-assigned any number of times while a reference can not be reassigned after initialization.
  2. A pointer can point to NULL while reference can never point to NULL
  3. You can't take the address of a reference like you can with pointers
  4. 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).

To clarify a misconception:

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:

int &ri = i;

allocates the same amount of storage as a pointer, and places the address of i into that storage.

So pointer and reference occupies same amount of memory

As a general rule,

  • Use references in function parameters and return types to define attractive interfaces.
  • Use pointers to implement algorithms and data structures.

Interesting read:

link|improve this question

5  
"C++ FQA Lite" did make me laugh, thank you... I hope no one took that jokes seriously... – paercebal Oct 10 '08 at 20:48
A local reference (i.e., one not in a struct or class) does not necessarily allocate storage. You can tell because of the sizeof difference between sizeof(int &) and sizeof(struct { int &x; }). – MSN Oct 8 '10 at 16:56
1  
@paercebal, the FQA wouldn't be nearly so funny if it didn't contain some germs of truth. – Mark Ransom Oct 8 '10 at 17:18
3  
I think point 2 should be "A pointer is allowed to be NULL but a reference is not. Only malformed code can create a NULL reference and its behavior is undefined." – Mark Ransom Oct 8 '10 at 17:21
4  
@Mark Ransom: I guess it still lets a bitter taste for all the F.U.D. and misinformation wrapping the "germs of truth". Novice C++ developers or clueless managers can get caught in FQA web of lies, and then, guess who's trying to make things right?... ^_^ ... – paercebal Oct 9 '10 at 9:26
feedback

21 Answers

1) A pointer can be re-assigned:

int x = 5;
int y = 6;
int *p;
p =  &x;
p = &y;
*p = 10;
assert(x == 5);
assert(y == 10);

A reference cannot, and must be assigned at initialization:

int x = 5;
int y = 6;
int &r = x;

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 stack vs heap. This implies that there is a real address of a reference that the compiler will not tell you.

int x = 0;
int &r = x;
int *p = &x;
int *p2 = &r;
assert(p == p2);

3) You can have pointers to pointers to pointers offering extra levels of indirection. Whereas references only offer one level of indirection.

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);

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.

int *p = NULL;
int &r = NULL; <--- compiling error

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.

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 ..

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 as the item it references.

8) References cannot be stuffed into an array, whereas pointers can be (Mentioned by user @litb)

link|improve this answer
3  
...but dereferencing NULL is undefined. For example, you can't test if a reference is NULL (e.g., &ref == NULL). – Pat Notz Sep 11 '08 at 22:07
1  
Nick you could use the same argument as your link to say that pointers are implemented as pointers to pointers but you didn't mention it. int x = 0; int y = 0; int p = &x; *(int*)(&p) = &y; Because it doesn't matter. – Brian R. Bondy Sep 19 '08 at 2:24
1  
I verified by the way that a reference does take up some space on the stack, I modified my #3 to include this info. The address of operator though still does specify the same as the variable that it refers to. – Brian R. Bondy Sep 19 '08 at 3:24
2  
another important diff: references cannot be stuffed into an array – Johannes Schaub - litb Feb 27 '09 at 21:10
2  
@litb: While the standard might not require space allocated for the reference, in many cases the compiler will be forced to reserve space. Consider a reference within a class, surely each instance of the class can refer to different external objects, and to which object they refer must be held somehow --in most implementations as an automatically dereferenced pointer (I cannot really think of any other possible implementation that fits all use cases, but then again, I am no expert) – David Rodríguez - dribeas Jan 14 '10 at 17:01
show 16 more comments
feedback

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.

std::string s1 = "123";
std::string s2 = "456";

std::string s3_copy = s1 + s2;
const std::string& s3_reference = s1 + s2;

In this example s3_copy copies the temporary object that is a result of the concatenation. Whereas s3_reference in essence becomes the temporary object. It's really a reference to a temporary object that now has the same lifetime as the reference.

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.

link|improve this answer
but whats the use case for this ? – digitalSurgeon Oct 22 '09 at 14:10
2  
Well, s3_copy will create a temporary and then copy construct it into s3_copy whereas s3_reference directly uses the temporary. Then to be really pedantic you need to look at the Return Value Optimization whereby the compiler is allowed to elide the copy construction in the first case. – Matt Price Oct 22 '09 at 18:14
@digitalSurgeon: The magic there is quite powerful. The object lifetime is extended by the fact of the const & binding, and only when the reference goes out of scope the destructor of the actual referenced type (as compared to the reference type, that could be a base) is called. Since it is a reference, no slicing will take place in between. – David Rodríguez - dribeas Jan 14 '10 at 17:06
@digitalSurgeaon: in some cases this behavior is very handy. I use it for instance to create anonymous temporary objects created on-the-fly when they are passed as parameters. You can also do it with pointers using new but then objects are created in the heap not on the stack, and you should be extra cautious not to forget to delete it. – kriss Jan 29 '10 at 14:55
feedback

Contrary to popular opinion, it is possible to have a reference that is NULL.

int * p = NULL;
int & r = *p;
r = 1;  // crash! (if you're lucky)

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.

Edit: a few clarifications.

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.

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.

My example above is short and contrived. Here's a more real-world example.

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);

Edit: Some further thoughts.

I want to reiterate that the only way to get a null reference is through malformed code, and once you have it you're getting undefined behavior. It never makes sense to check for a null reference; for example you can try if(&bar==NULL)... but the compiler might optimize the statement out of existence! A valid reference can never be NULL so from the compiler's view the comparison is always false - this is the essence of undefined behavior.

The proper way to stay out of trouble is to avoid dereferencing a NULL pointer to create a reference. Here's an automated way to accomplish this.

template<typename T>
T& ref(T* p)
{
    if (p == NULL)
        throw std::invalid_argument(std::string("NULL reference"));
    return *p;
}

MyClass * p = GetInstance();
Foo(ref(p));
link|improve this answer
2  
As a nitpick, I'd say that the reference isn't actually null - it references bad memory. Although it is a valid point that just because it's a reference, doesn't mean that it refers to something that's valid – Nick Sep 12 '08 at 13:42
7  
The code in question contains undefined behavior. Technically, you cannot do anything with a null pointer except set it, and compare it. Once your program invokes undefined behavior, it can do anything, including appearing to work correctly until you are giving a demo to the big boss. – KeithB Sep 12 '08 at 16:00
I didn't test it but I think the code above just crash at the second line while dereferencing the NULL pointer. – Vincent Robert Sep 19 '08 at 12:00
@Vincent: In fact, no, sometimes, the second line is silently invoked (remember compilers can implement references as pointers, so...)... So the crash happens when you us the reference. – paercebal Oct 10 '08 at 20:39
2  
mark has a valid argument. the argument that a pointer could be NULL and you therefor have to check is not real either: if you say a function requires non-NULL, then the caller has to do that. so if the caller doesn't he is invoking undefined behavior. just like mark did with the bad reference – Johannes Schaub - litb Feb 27 '09 at 21:14
show 4 more comments
feedback

You forgot the most important part

member-access with pointers uses ->
member-access with references uses .

foo.bar is clearly superior to foo->bar in the same way that vi is clearly superior to emacs :-)

link|improve this answer
2  
here we go..... :P – mat kelcey Oct 10 '08 at 9:09
3  
+1 for dispelling the common myth that the editor war has not ended with one clear winner – kizzx2 Jul 30 '10 at 15:57
@Orion Edwards, lol!!! – user898058 Oct 6 '11 at 19:40
feedback

Another benefit, is that a reference can never be NULL. No more exhaustive parameter checking :-).

link|improve this answer
feedback

What's a C++ reference (for C programmers)

A reference can be thought of as a constant pointer (not to be confused with a pointer to a constant value!) with automatic indirection, ie the compiler will apply the * operator for you.

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.

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 without looking at function signatures.

C++ programmers might dislike using pointers as they are considered unsafe - although references aren't really any safer than constant pointers except in the most trivial cases - lack the convenience of automatic indirection and carry a different semantic connotation.

Consider the following statement from the C++ FAQ Lite:

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.

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 generally just isn't a way to reliably alias values across scope boundaries!

Why I consider C++ references useful

Coming from a C background, C++ references may look like a somewhat silly concept, but one should still use them instead of pointers where possible: Automatic indirection is convenient, and references become especially useful when dealing with RAII - but not because of any perceived safety advantage, but rather because they make writing idiomatic code less awkward.

RAII is one of the central concepts of C++, but it interacts non-trivially with copying semantics. Passing objects by reference avoids these issues as no copying is involved. If references were not present in the language, you'd have to use pointers instead, which are more cumbersome to use, thus violating the language design principle that the best-practice solution should be easier than the alternatives.

link|improve this answer
@Christoph: well references can be dangling only if you got it somewhere through dereferencing some pointer. – kriss Jan 29 '10 at 15:05
@kriss: No, you can also get a dangling reference by returning an automatic variable by reference. – Ben Voigt Nov 2 '10 at 6:14
@Ben Voight: OK, but that's really calling for troubles. Some compilers even return warnings if you do that. – kriss Nov 2 '10 at 7:38
@kriss: It's virtually impossible for a compiler to detect in the general case. Consider a member function that returns a reference to a class member variable: that's safe and should not be forbidden by the compiler. Then a caller that has an automatic instance of that class, calls that member function, and returns the reference. Presto: dangling reference. And yes, it's going to cause trouble, @kriss: that's my point. Many people claim that an advantage of references over pointers is that references are always valid, but it just isn't so. – Ben Voigt Nov 2 '10 at 13:15
@Ben Voigt: are you sure this scenario will work with non const references ? Isn't it what Matt Price is speaking about in it's answer ? But I agree, returned references can be dangling, even non auto objects can be explicitely deleted. – kriss Nov 2 '10 at 13:56
show 4 more comments
feedback

Actually, a reference is not really like a pointer.

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.

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.

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.

Now some explanation of real code:

int a = 0;
int& b = a;

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.

void increment(int& n)
{
    n = n + 1;
}

int a;
increment(a);

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.

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.

link|improve this answer
A reference is a reference to l-value, not necessarily to a variable. Because of that, it's much closer to a pointer than to a real alias (a compile-time construct). Examples of expressions that can be referenced are *p or even *p++ – Arkadiy Mar 2 '09 at 16:27
1  
Right, I was just pointing the fact that a reference may not always push a new variable on the stack the way a new pointer will. – Vincent Robert Mar 3 '09 at 20:36
feedback

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.

link|improve this answer
I'm not sure that calling a reference a "const pointer" is helpful. The only way in which a reference is like a pointer is that it can be made to refer to some pre-existing memory location. A reference shares no other characteristics of a pointer. – Chris Ammerman Sep 11 '08 at 20:17
3  
@Turbulent Intellect: a C++ reference can be thought of as a constant pointer with automatic indirection - see my answer... – Christoph Feb 27 '09 at 21:28
2  
@Christoph: Except that reference parameters in functions that are inlined can actually behave as a "shadow" of the parent variable (even staying within a register) whereas the a pointer (even with automatic indirection) that is dereferenced will result in memory accesses. – Adisak Oct 15 '09 at 4:35
A reference is not a kind of pointer. It is a new name for an existing object. – catphive Jul 20 '11 at 1:29
@Adisak: optimizers can and will remove memory access through pointers when inlining code; one reason why C programmers might dislike references is that they carry the same performance characteristics as pointers without any visual indications in calling code – Christoph Jul 23 '11 at 9:30
show 1 more comment
feedback

It doesn't matter how much space it takes up since you can't actually see any side effect (without executing code) of whatever space it would take up.

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.

For example:

class scope_test
{
public:
    ~scope_test() { printf("scope_test done!\n"); }
};

...

{
    const scope_test &test= scope_test();
    printf("in scope\n");
}

will print:

in scope
scope_test done!

This is the language mechanism that allows ScopeGuard to work.

MSN

link|improve this answer
You can't take the address of a reference, but that doesn't mean that they don't physically take up space. Barring optimisations, they most certainly can. – Lightness Races in Orbit Apr 24 '11 at 16:27
Quoting myself: "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." In other words, it may have an impact, but you can only observe it through side effects of execution. It doesn't even have a different size from the underlying type. This is different from embedding a reference in another type. – MSN Apr 25 '11 at 19:10
Impact notwithstanding, "A reference on the stack doesn't take up any space at all" is patently false. – Lightness Races in Orbit Apr 25 '11 at 23:09
@Tomalak, well, that depends also on the compiler. But yes, saying that is a bit confusing. I suppose it would be less confusing to just remove that. – MSN Apr 26 '11 at 21:52
In any given specific case it may or it may not. So "it does not" as a categorical assertion is wrong. That's what I'm saying. :) [I can't remember what the standard says on the issue; the rules of reference members may impart a general rule of "references may take up space", but I don't have my copy of the standard with me here on the beach :D] – Lightness Races in Orbit Apr 26 '11 at 22:22
feedback

While both references and pointers are used to indirectly access another value, there are two important differences between references and pointers. The first is that a reference always refers to an object: It is an error to define a reference without initializing it. The behavior of assignment is the second important difference: Assigning to a reference changes the object to which the reference is bound; it does not rebind the reference to another object. Once initialized, a reference always refers to the same underlying object.

Consider these two program fragments. In the first, we assign one pointer to another:

      int ival = 1024, ival2 = 2048;
      int *pi = &ival, *pi2 = &ival2;
      pi = pi2;    // pi now points to ival2

After the assignment, ival, the object addressed by pi remains unchanged. The assignment changes the value of pi, making it point to a different object. Now consider a similar program that assigns two references:

      int &ri = ival, &ri2 = ival2;
      ri = ri2;    // assigns ival2 to ival

This assignment changes ival, the value referenced by ri, and not the reference itself. After the assignment, the two references still refer to their original objects, and the value of those objects is now the same as well.

link|improve this answer
feedback

@axs6791 I'm not sure what you mean exactly. References can be assigned to a derived class:

class A
{
};

class B : public A
{
};

void foo()
{
    B b;

    A& a = b;
}

What case can you do with pointers that wouldn't work with references?

link|improve this answer
feedback

@Brian: References can take up memory, just as pointers do.

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.

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.

link|improve this answer
feedback

@Orion Edwards

member-access with pointers uses ->

member-access with references uses .

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 ->

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);

--

OP: Are you familiar with the concepts of rvalues and lvalues?

link|improve this answer
feedback

I use references unless I need either of these:

  • Null Pointers can be used as a sentinel value, often a cheap way to avoid function overloading or use of a bool.

  • You can do arithmetic on a pointer. For example, p += offset;

link|improve this answer
feedback

Another interesting use of references is to supply a default argument of a user-defined type:

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;
}

The default flavor uses the 'bind const reference to a temporary' aspect of references.

link|improve this answer
feedback

Also, a reference that is a parameter to a function that is inlined may be handled differently than a pointer.

void increment(int *ptrint) { (*ptrint)++; }
void increment(int &refint) { refint++; }
void incptrtest()
{
    int testptr=0;
    increment(&testptr);
}
void increftest()
{
    int testref=0;
    increment(testref);
}

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.

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.

link|improve this answer
feedback

Another difference is that you can have pointers to a void type (and it means pointer to anything) but references to void are forbidden.

int a;
void * p = &a; // ok
void & p = a;  //  forbidden

I can't say I'm really happy with this particular difference. I would much prefer it would be allowed with the meaning reference to anything with an address and otherwise the same behavior for references.

link|improve this answer
feedback

Here is a video tutorial that explains difference between lvalue and rvalue expressions - terms crucial for good understanding of references and pointers too): C++ Tutorial (10) on YT

link|improve this answer
feedback

but the following code is OK if using g++ to compile it

int a = 1;
int b = 2;
int& c = a;
c = b;
link|improve this answer
what is wrong with the code in any compiler? With the last c=b, c does not become a reference to b but the value of c has changed to b. The statement is equivalent to writing a = b; – balki Aug 8 '11 at 17:36
feedback

Generally, I dont see nothing extremal positive in conception of references. Simple but powerful rule of programming tells: Nothing artificial, simple things are preferrable! So, if there is nothing positive against pointers, why we need references?? Remember, how Java creators rejected rederences and pointers.

link|improve this answer
feedback

Advantage of references to pointers is that you can use it as an argument to an operator overload function, because operator overload function don't accept pointers for arguments.

Am I not correct?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.