Difference btw pointer and a reference in C++?

Discussion in 'C++' started by tom_ge, Mar 20, 2007.

  1. tom_ge

    tom_ge New Member

    Joined:
    Mar 20, 2007
    Messages:
    7
    Likes Received:
    0
    Trophy Points:
    0
    what is the difference btw a pointer and a reference in C++?
    int *ptr;
    int &ptr;

    correct me if i am wrong, both of them hold the address of an interger variable when assigned to them and they can be used as aliases . Are the just different implementations or is the a difference btween the two ?

    Thanks in advance
     
  2. shabbir

    shabbir Administrator Staff Member

    Joined:
    Jul 12, 2004
    Messages:
    15,375
    Likes Received:
    388
    Trophy Points:
    83
    One difference I know is
    One is alias. i.e. you have 2 things exactly alike and the other is a pointer to the first object. Analogy can be
    x and y hold the same data.
    x holds the data and y knows its address where the data of x is
     
  3. DaWei

    DaWei New Member

    Joined:
    Dec 6, 2006
    Messages:
    835
    Likes Received:
    5
    Trophy Points:
    0
    Occupation:
    Semi-retired EE
    Location:
    Texan now in Central NY
    Home Page:
    http://www.daweidesigns.com
    'Alias', as Shabbir says, is the perfect word. A reference is simply another name for an existing object. Consequently, you cannot write "int &ptr;" because you have not said what 'ptr' is another name for. You must write "int &newName = a;". A pointer, on the other hand, is like a name in your address book; it contains information about where something lives. It is not the something, just information about its location.
     
  4. tom_ge

    tom_ge New Member

    Joined:
    Mar 20, 2007
    Messages:
    7
    Likes Received:
    0
    Trophy Points:
    0
    But internally even for a reference to work all it does is stores the address of the location it references .Thats how both the variable and the reference access the same copy of the variable and do not have different copies.
    Consequently even a pointer does the same but we manually assign it the address of the location to reference unlike in references.

    Am i right ? or is there any other implementation for reference ?
     
  5. DaWei

    DaWei New Member

    Joined:
    Dec 6, 2006
    Messages:
    835
    Likes Received:
    5
    Trophy Points:
    0
    Occupation:
    Semi-retired EE
    Location:
    Texan now in Central NY
    Home Page:
    http://www.daweidesigns.com
    No, the reference does not store the address of the variable for which it is another name. The equivalency is a compiler issue. You cannot have an unitialized reference. When a reference is passed to a function, the value passed is the same value that would be passed if the original were used. This is, of course, at this point, an address, but there is one less level of indirection than there would be if a pointer were passed.

    You might want to write some code using a pointer and a reference and examine the assembly-language code that is emitted by the compiler.
     
  6. tom_ge

    tom_ge New Member

    Joined:
    Mar 20, 2007
    Messages:
    7
    Likes Received:
    0
    Trophy Points:
    0
    Thank Dawei...will check the assemble for reference.
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice