I am programming in C++ more then 5 years, and have never met any place where reference of the variable is recommended to use except as a function argument (if you don't want to copy what you pass as your function argument). So could someone point cases where C++ variable reference is recommended (I mean it gives any advantage) to use.
|
4
|
|||||
|
|
|
As a return value of an opaque collection accessor/mutator The To shorten the text needed to reference a variable If you miss old-school
another example of this can be found in Mike Dunlavey's answer To state that something is just a reference References are also useful in wrapper objects and functors--i.e. in intermediate objects that logically contact no members but only references to them. Example:
The idea here that it's a compile error if you don't initialize a reference in constructor of such an object. The more checks in compile time--the better programs are. |
|||
|
|
|
|
Use references wherever you want, pointers when you are forced to. References and pointers share part of their semantics: they are an alias to an element that is not present. The main difference is with memory managements: references express clearly that you are not responsible for the resource. On the other hand, with pointers it is never really clear (unless you mean smart pointers): are you assumed to delete the pointer or will it be deleted externally? You must use pointers when you must manage memory, want to allow for optional semantics or need to change the element referred to at a later time. In the rest of cases, where you can use a reference or a pointer, references are clearer and should be preferred. Now, as you point out, they are really not needed: you can always use pointers for all the reference uses (even parameter passing), but the fact that you can use a single tool for everything does not mean there are no better suited tools for the job. |
||
|
|
|
Stream operators are an obvious example
You obviously don't want a pointer as checking for NULL makes using an operator very tedious i.s.o. convenient |
||
|
|
|
|
The argument to the copy-constructor MUST be passed as a reference, since otherwise the copy constructor would need to call it self in an endless recursion (stack overflow). |
||
|
|
|
|
Use a const reference to give a name to a value, e.g.:
This names the value, but doesn't necessarily create a variable for it. In theory, this gives the compiler more leeway and may allow it to avoid some copy constructor calls. (Related non-duplicated Stack Overflow question at http://stackoverflow.com/questions/760578/const-reference-to-temporary. The Herb Sutter link there has more information about this.) |
||||
|
|
|
I've used a reference to an ostream instead of a pointer. I supppose that I prefer references to pointers when the class has a lot of operators. |
||
|
|
|
|
i would like to enlist some cases: 1) while writing singleton classes
it has all the benefits, but avoids using the new operator 2)here is no such thing as a null reference. A reference must always refer to some object. As a result, if you have a variable whose purpose is to refer to another object, but it is possible that there might not be an object to refer to, you should make the variable a pointer, because then you can set it to null. On the other hand, if the variable must always refer to an object, i.e., if your design does not allow for the possibility that the variable is null, you should probably make the variable a reference 3)Because a reference must refer to an object, C++ requires that references be initialized:
The fact that there is no such thing as a null reference implies that it can be more efficient to use references than to use pointers. That's because there's no need to test the validity of a reference before using it 4)Another important difference between pointers and references is that pointers may be reassigned to refer to different objects. A reference, however, always refers to the object with which it is initialized: ¤ Item M1, P10
|
|||
|
|
|
References make code prettier. So use them whenever it takes a reference to beautify your code. |
||
|
|
|
|
Here's a case where it's handy:
|
||||||
|
|
|
Well you kind of have two choices for aliasing other values(ignoring shared_ptrs and the like): pointers and references. References must be initialized at construction to refer to something else. So semantically a reference can never be NULL. In reality, though, the underlying data can go away, giving you problems often more difficult to debug than if a pointer went away. So I'm not sure there's a real advantage here unless you were disciplined and consistent with how they were used vis-a-vis referring to items that were dynamically allocated. If you did this with pointers too, you'd avoid the same problems. Perhaps more importantly, references can be used without thinking about all the issues that arise with pointers. This is probably the main advantage. Semantically a reference is the thing. If you guarantee as the caller/callee that the underlying memory doesn't go away, you don't have to confuse the user with any of the questions that come along with pointers (Do I need to free this? Could this be NULL? etc) and can safely use a reference for convenience. An example of this might be a function that looks up the corresponding string for an enum,
Here the contract between the caller and the callee guarantees that the return type will always be there. You can safely return a reference, and avoid some of the questions that pointers invite. |
||||
|
|
|
I tend to use reference members instead of pointers for externally controlled non-optional construction parameters. EDIT (added example): Let's say that you have a database and a DAO class having the database as a dependency:
Furthermore, the scope of the database is controlled externally from the DAO:
In this case it makes sense to use a reference type, since you don't ever want DAO::m_d to be null, and its lifetime is controlled externally (from the main function in this case). |
||||||||||||
|
|
|
I use references in function arguments not just to avoid copies but also instead of pointers to avoid having to deal with ... and to make it absolutely clear (-> comments). I tend to avoid pointers to model "maybe there are several values" - a vector is a better option here. Pointers to several values often end up in C-style programming because you usually have to pass the # of elements as well separately. |
||||||||||||||||||||
|
|
|
I tend to agree, but perhaps const return values. |
||
|
|
