For example:
I could make a constant pointer, which points to an object that I can change through my pointer. The pointer cannot be reassigned:
MyObj const *ptrObj = MyObj2
Why would I use this over:
MyObj &ptrObj = MyObj2
|
What you have there isn't a
As to why you might prefer it over a reference, you might want the flexibility of using the |
|||
|
|
|
You got it wrong. What you have is a mutable pointer to a constant object:
What you really want is a constant pointer to mutable object:
Indeed, references are morally equivalent to constant pointers, i.e. If you insist on getting some advice, then I'd say, "don't use pointers". |
||||
|
|
|
The important difference between a pointer and a reference is how many objects they may refer to. A reference always refers to exactly one object. A pointer may refer to zero (when the pointer is null), one (when the pointer was assigned the location of a single object) or n objects (when the pointer was assigned to some point inside an array). The ability of pointers to refer to 0 to n objects means that a pointer is more flexible in what it can represent. When the extra flexibility of a pointer is not necessary it is generally better to use a reference. That way someone reading your code doesn't have to work out whether the pointer refers to zero, one or n objects. |
|||
|
|
MyObjis a type andMyObj2is an instance ofMyObjyou would still need a&there ... – AJG85 Dec 5 '11 at 20:18