Is it ok to create references for reference variables (alias for an alias in itself ) ?
If yes, what is its application ?
|
|
In C++98, it was illegal to form references to reference types. In C++11, there are new reference collapsing rules, which means in a nutshell that a reference to a reference is still just a reference (but there are subtleties regarding lvalue and rvalue references). Consider this code:
In C++98, the last line is illegal, since Bear in mind that references are immutable, and once initialized you can never change the target of the reference. In the above code, For completeness, the reference collapsing rules are as follows. Suppose
|
|||||||||||
|
|
You can't create a reference to a reference, and C++ has no reference-to-reference types. If you use a reference to initialize another reference, for example:
Then what you've actually done is bound the referand of I can't immediately think of a reason to have two references in the same function, but you'd commonly create multiple references if you have a function |
|||
|
|