What is the difference between:
const double& pi = 3.14;
and (no ampersand):
const double pi = 3.14;
They both seem to have the same L and R values so what is the difference? Thanks.
|
feedback
|
|
For your particular example there's no difference. And that means, no way to tell them apart, whatsoever. However, since the first binds a reference to a temporary, when the type is of class type the temporary can be of a derived class, e.g. produced by a function! And it then has its destructor properly called at the end of the scope. This little el neato trick is used in ScopeGuard implementations (see the original ScopeGuard article in DDJ, by Petru Marginean and Andrei Alexandrescu -- Petru invented ScopeGuard and Andrei made a more general thing on top). I once asked Bjarne Stroustrup, who created the C++ language, why the syntax in your first declaration is supported. And his reply was that it was mostly to have uniform rules (i.e. to not make any special exception for local references as opposed to references as formal parameters). I think at that time neither of us were familiar with ScopeGuard. It's simple in retrospect, but it takes a mind like Petru's, or Andrei's, to come up with something like that! :-) Cheers & hth. | |||||||||||||
feedback
|
|
The important difference with a reference is that a reference itself is inheritly constant. Once the reference itself has been initially assigned to a variable, it can not then reference another variable. All attempts to modify it will modify the variable it refers to. Given this, the
You can also test this theory about a reference itself being constant like so:
| |||
|
feedback
|
|
A bit of clarification about constant references, references and constants for ReferenceA reference refers to an existing an object and cannot be reseated. That is, once you declare (define) the reference, it will always refer to that item. Constant ReferenceThe C++ language allows for declaring of a constant reference. This tells the compiler that the reference will not change. This may be redundant since references cannot be reseated. However, the language syntax allows it. ConstantA constant is a value, and does not refer to anything. Optimizations & SubstitutionsThe compiler is allowed to substitute (replace) a reference to an object, constant or literal with the corresponding object, constant or literal, provided that the compiler can guarantee that no write operations are performed to that object within the scope it is used in. This determination may become difficult when the reference is passed to methods or functions within that scope. Specifying the | |||
feedback
|
|
const double& is a reference to a constant double, the other one is a constant double. A reference is kind of a const pointer, a pointer that never changes. | |||||
feedback
|
|
The reference isnt const only the value is const, so you should be able reassign referense, that means the following would be ok:
| |||||||||||||
feedback
|
constmakes no difference, references don't have the same behavior as non-references. Maybe in this case, but surely you use them in other situations? – GManNickG Oct 13 '10 at 21:16